WpOrg\Requests

Session::__unset()publicWP 1.0

Remove a property's value

Method of the class: Session{}

No Hooks.

Return

null. Nothing (null).

Usage

$Session = new Session();
$Session->__unset( $name );
$name(string) (required)
Property name.

Session::__unset() code WP 6.6.2

public function __unset($name) {
	unset($this->options[$name]);
}