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