WpOrg\Requests\Cookie
Jar::offsetGet
Get the value for the item
Метод класса: Jar{}
Хуков нет.
Возвращает
string|null. Item value (null if offsetExists is false)
Использование
$Jar = new Jar(); $Jar->offsetGet( $offset );
- $offset(строка) (обязательный)
- Item key.
Код Jar::offsetGet() Jar::offsetGet WP 7.1
public function offsetGet($offset) {
if (!isset($this->cookies[$offset])) {
return null;
}
return $this->cookies[$offset];
}