WpOrg\Requests
Session::__unset()
Remove a property's value
Метод класса: Session{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$Session = new Session(); $Session->__unset( $name );
- $name(строка) (обязательный)
- Property name.
Код Session::__unset() Session:: unset WP 6.7.1
public function __unset($name) { unset($this->options[$name]); }