Requests_Session::__isset() WordPress Method

The Requests_Session::__isset() method is used to check whether a session variable is set. This is useful for checking whether a particular option has been set in a session.

Requests_Session::__isset( string $key ) #

Remove a property’s value


Parameters

$key

(string)(Required)Property key


Top ↑

Source

File: wp-includes/Requests/Session.php

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

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.