Requests_Cookie_Jar::offsetSet()
最后更新于:2021-11-26 02:11:19
Requests_Cookie_Jar::offsetSet( string$key, string$value)Set the given item
参数
- $key
-
(string) (Required) Item name
- $value
-
(string) (Required) Item value
源文件
文件: gc-includes/Requests/Cookie/Jar.php
public function offsetSet($key, $value) {
if ($key === null) {
throw new Requests_Exception('Object is a dictionary, not a list', 'invalidset');
}
$this->cookies[$key] = $value;
}