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 7.0.3
public function __unset($name) {
unset($this->options[$name]);
}