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