wpdb::__unset()
Makes private properties un-settable for backward compatibility.
Method of the class: wpdb{}
No Hooks.
Return
null
. Ничего (null).
Usage
global $wpdb; $wpdb->__unset( $name );
- $name(string) (required)
- The private member to unset
Changelog
Since 3.5.0 | Introduced. |
wpdb::__unset() wpdb:: unset code WP 6.4.1
public function __unset( $name ) { unset( $this->$name ); }