Requests_Cookie_Jar::offsetGet( string $key )
Get the value for the item
Description
Parameters
- $key
-
(string) (Required) Item key
Return
(string) Item value
Source
File: wp-includes/Requests/Cookie/Jar.php
public function offsetGet($key) { if (!isset($this->cookies[$key])) { return null; } return $this->cookies[$key]; }