WpOrg\Requests

Cookie::__toStringpublicWP 1.0

Get the cookie value

Attributes and other data can be accessed via methods.

Method of the class: Cookie{}

No Hooks.

Returns

null. Nothing (null).

Usage

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

Cookie::__toString() code WP 6.8.1

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