Summery Summery
Check if a cookie is valid for a given URI
Syntax Syntax
Parameters Parameters
- $uri
-
(Required) URI to check
Return Return
(boolean) Whether the cookie is valid for the given URI
Source Source
File: wp-includes/Requests/Cookie.php
public function uri_matches(Requests_IRI $uri) { if (!$this->domain_matches($uri->host)) { return false; } if (!$this->path_matches($uri->path)) { return false; } return empty($this->attributes['secure']) || $uri->scheme === 'https'; }