Requests_Session::__unset()

最后更新于:2021-11-26 04:05:30

Requests_Session::__unset( string$key)

Remove a property’s value

参数

$key

(string) (Required) Property key

源文件

文件: gc-includes/Requests/Session.php

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