WC_Customer_Download::__isset
Magic __isset method for backwards compatibility. Legacy properties which could be accessed directly in the past.
Метод класса: WC_Customer_Download{}
Хуков нет.
Возвращает
true|false.
Использование
$WC_Customer_Download = new WC_Customer_Download(); $WC_Customer_Download->__isset( $key );
- $key(строка) (обязательный)
- Key name.
Код WC_Customer_Download::__isset() WC Customer Download:: isset WC 10.5.2
public function __isset( $key ) {
return in_array( $key, array_keys( $this->data ), true );
}