Requests_Cookie_Jar::offsetExists()
最后更新于:2021-11-26 02:04:19
Requests_Cookie_Jar::offsetExists( string$key)Check if the given item exists
参数
- $key
-
(string) (Required) Item key
响应
(boolean) Does the item exist?
源文件
文件: gc-includes/Requests/Cookie/Jar.php
public function offsetExists($key) {
return isset($this->cookies[$key]);
}