WpOrg\Requests

Cookie::__toString()publicWP 1.0

Get the cookie value

Attributes and other data can be accessed via methods.

Метод класса: Cookie{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$Cookie = new Cookie();
$Cookie->__toString();

Код Cookie::__toString() WP 6.6.2

public function __toString() {
	return $this->value;
}