WC_Customer_Download::__isset()publicWC 1.0

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 8.7.0

public function __isset( $key ) {
	return in_array( $key, array_keys( $this->data ), true );
}