WC_Session::__isset( mixed $key )

Magic isset method.


Description Description


Parameters Parameters

$key

(Required) Key to check.


Top ↑

Return Return

(bool)


Top ↑

Source Source

File: includes/abstracts/abstract-wc-session.php

	public function __isset( $key ) {
		return isset( $this->_data[ sanitize_title( $key ) ] );
	}

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.