wpdb::__isset
Makes private properties check-able for backward compatibility.
Method of the class: wpdb{}
No Hooks.
Returns
true|false. If the member is set or not.
Usage
global $wpdb; $wpdb->__isset( $name );
- $name(string) (required)
- The private member to check.
Changelog
| Since 3.5.0 | Introduced. |
wpdb::__isset() wpdb:: isset code WP 7.0
public function __isset( $name ) {
return isset( $this->$name );
}