Requests_Session::__get()
最后更新于:2021-11-26 04:05:05
Requests_Session::__get( string$key)Get a property’s value
参数
- $key
-
(string) (Required) Property key
响应
(mixed|null) Property value, null if none found
源文件
文件: gc-includes/Requests/Session.php
public function __get($key) {
if (isset($this->options[$key])) {
return $this->options[$key];
}
return null;
}