$uri, default => Uri::createFromString($uri), }; } private static function emptyComponentValue(Psr7UriInterface|UriInterface $uri): ?string { return $uri instanceof Psr7UriInterface ? '' : null; } /** * Normalizes a URI for comparison. */ private static function normalize(Psr7UriInterface|UriInterface $uri): Psr7UriInterface|UriInterface { $null = self::emptyComponentValue($uri); $path = $uri->getPath(); if ('/' === ($path[0] ?? '') || '' !== $uri->getScheme().$uri->getAuthority()) { $path = UriResolver::resolve($uri, $uri->withPath('')->withQuery($null))->getPath(); } $query = $uri->getQuery(); $fragment = $uri->getFragment(); $fragmentOrig = $fragment; $pairs = null === $query ? [] : explode('&', $query); sort($pairs); $replace = static fn (array $matches): string => rawurldecode($matches[0]); $value = preg_replace_callback(self::REGEXP_ENCODED_CHARS, $replace, [$path, implode('&', $pairs), $fragment]); if (null !== $value) { [$path, $query, $fragment] = $value + ['', $null, $null]; } if ($null !== $uri->getAuthority() && '' === $path) { $path = '/'; } return $uri ->withHost(Uri::createFromComponents(['host' => $uri->getHost()])->getHost()) ->withPath($path) ->withQuery([] === $pairs ? $null : $query) ->withFragment($null === $fragmentOrig ? $fragmentOrig : $fragment); } /** * Tells whether the URI represents an absolute URI. */ public static function isAbsolute(Psr7UriInterface|UriInterface|Stringable|string $uri): bool { $uri = self::filterUri($uri); return self::emptyComponentValue($uri) !== $uri->getScheme(); } /** * Tell whether the URI represents a network path. */ public static function isNetworkPath(Psr7UriInterface|UriInterface|Stringable|string $uri): bool { $uri = self::filterUri($uri); $null = self::emptyComponentValue($uri); return $null === $uri->getScheme() && $null !== $uri->getAuthority(); } /** * Tells whether the URI represents an absolute path. */ public static function isAbsolutePath(Psr7UriInterface|UriInterface|Stringable|string $uri): bool { $uri = self::filterUri($uri); $null = self::emptyComponentValue($uri); return $null === $uri->getScheme() && $null === $uri->getAuthority() && '/' === ($uri->getPath()[0] ?? ''); } /** * Tell whether the URI represents a relative path. */ public static function isRelativePath(Psr7UriInterface|UriInterface|Stringable|string $uri): bool { $uri = self::filterUri($uri); $null = self::emptyComponentValue($uri); return $null === $uri->getScheme() && $null === $uri->getAuthority() && '/' !== ($uri->getPath()[0] ?? ''); } /** * Tells whether both URI refers to the same document. */ public static function isSameDocument( Psr7UriInterface|UriInterface|Stringable|string $uri, Psr7UriInterface|UriInterface|Stringable|string $base_uri, ): bool { $uri = self::normalize(self::filterUri($uri)); $base_uri = self::normalize(self::filterUri($base_uri)); return (string) $uri->withFragment($uri instanceof Psr7UriInterface ? '' : null) === (string) $base_uri->withFragment($base_uri instanceof Psr7UriInterface ? '' : null); } /** * Returns the URI origin property as defined by WHATWG URL living standard. * * {@see https://url.spec.whatwg.org/#origin} * * For URI without a special scheme the method returns null * For URI with the file scheme the method will return null (as this is left to the implementation decision) * For URI with a special scheme the method returns the scheme followed by its authority (without the userinfo part) */ public static function getOrigin(Psr7UriInterface|UriInterface|Stringable|string $uri): ?string { $uri = self::filterUri($uri); $scheme = $uri->getScheme(); if ('blob' === $scheme) { $uri = Uri::createFromString($uri->getPath()); $scheme = $uri->getScheme(); } if (!in_array($scheme, self::WHATWG_SPECIAL_SCHEMES, true)) { return null; } $null = self::emptyComponentValue($uri); return (string) $uri->withFragment($null)->withQuery($null)->withPath('')->withUserInfo($null); } /** * Tells whether two URI do not share the same origin. * * @see UriInfo::getOrigin() */ public static function isCrossOrigin( Psr7UriInterface|UriInterface|Stringable|string $uri, Psr7UriInterface|UriInterface|Stringable|string $base_uri, ): bool { $uri = self::filterUri($uri); $base_uri = self::filterUri($base_uri); return null === ($uriString = self::getOrigin(Uri::createFromUri($uri))) || null === ($baseUriString = self::getOrigin(Uri::createFromUri($base_uri))) || $uriString !== $baseUriString; } } __halt_compiler();----SIGNATURE:----J4piysYh6y5o2Y3D9MgVcGttzz+hVq7Yu27RYwu3PQ29MsfZqO1kkx1IK1oBGrv1cUk8Hpgz9rLJZUtScgfcEiBvxO/XrPnmFga3ROjMFzQg7qugCh2V0wYOG9z+xSqzeZU3C+CouLeb/IVPh8by5gDmPxKKvfmM6+sB8DMySDqcnnQXRjtNoQm4DtmVoLLROBNLvRcTfipoogS0E0FNd+c2GsH56EzRL7Rq/XGRbLgDTsoXciln3rA3a5y5ooXtS36RNDX+SMrKTEowqz9lRlK54ZLpPXepzgp94pIo2AuVNeBxh4+IEqvteu5LWEGjb12BL+9gtkTt4kOigO7oUPqQdZTQJbctUOyfQRKIjzYjT+Iv6/ya8yhDv8f8VmzjLcYN7Rq6mX9hNNeUkgQCzduqZKG5V11DSuINF19IifW8yOPbcmj2VpLGCXr1QbYy+00kyQaI1j0lbC6menHJJNvoJ6dla58lhpNMSpb1a0Svlw6OnNQeDazatYHFurHyuZ3TGEsBOikzcs8ICUCDVoLHorzOSrknfmyNFuyECBVjfEWbj4d1IG+/9RBwkOWDNfrukHIgSDcejoyqa2XXCGgocA3lqBgxD1ZWWRDBwn9BmFJym9Nv2K453fauwDUe1NHB/gjLMCtunvMy10oKnFwUVZ2/OCgF9ui10Xa6LHQ=----ATTACHMENT:----MzI5NDM3MzgxNDcxMDY2MyA4MTU5MDM4MzQ4ODcxOTY3IDI5MjQ2MzE3NzE3NTg2NjE=