WC_Session::__isset
Magic isset method.
Method of the class: WC_Session{}
No Hooks.
Returns
true|false.
Usage
$WC_Session = new WC_Session(); $WC_Session->__isset( $key );
- $key(string) (required)
- Key to check.
WC_Session::__isset() WC Session:: isset code WC 10.5.0
public function __isset( $key ) {
return isset( $this->_data[ sanitize_key( $key ) ] );
}