YoastSEO_Vendor\GuzzleHttp\Psr7
Uri::isSameDocumentReference() public Yoast 1.0
Whether the URI is a same-document reference.
A same-document reference refers to a URI that is, aside from its fragment component, identical to the base URI. When no base URI is given, only an empty URI reference (apart from its fragment) is considered a same-document reference.
{} Это метод класса: Uri{}
Хуков нет.
Возвращает
true/false.
Использование
$result = Uri::isSameDocumentReference( \YoastSEO_Vendor\Psr\Http\Message\UriInterface $uri, \YoastSEO_Vendor\Psr\Http\Message\UriInterface $base );
- $uri(Uriчислоerface) (обязательный)
- The URI to check
- $base(Uriчислоerface/null) (обязательный)
- An optional base URI to compare against
Код Uri::isSameDocumentReference() Uri::isSameDocumentReference Yoast 15.6.2
public static function isSameDocumentReference(\YoastSEO_Vendor\Psr\Http\Message\UriInterface $uri, \YoastSEO_Vendor\Psr\Http\Message\UriInterface $base = null)
{
if ($base !== null) {
$uri = \YoastSEO_Vendor\GuzzleHttp\Psr7\UriResolver::resolve($base, $uri);
return $uri->getScheme() === $base->getScheme() && $uri->getAuthority() === $base->getAuthority() && $uri->getPath() === $base->getPath() && $uri->getQuery() === $base->getQuery();
}
return $uri->getScheme() === '' && $uri->getAuthority() === '' && $uri->getPath() === '' && $uri->getQuery() === '';
}