\GuzzleHttp\Psr7UriResolver

Resolves a URI reference in the context of a base URI and the opposite way.

Summary

Methods
Properties
Constants
removeDotSegments()
resolve()
relativize()
No public properties found
No constants found
No protected methods found
No protected properties found
N/A
getRelativePath()
__construct()
No private properties found
N/A

Methods

removeDotSegments()

removeDotSegments(string  $path) : string

Removes dot segments from a path and returns the new path.

Parameters

string $path

Returns

string

relativize()

relativize(\Psr\Http\Message\UriInterface  $base, \Psr\Http\Message\UriInterface  $target) : \Psr\Http\Message\UriInterface

Returns the target URI as a relative reference from the base URI.

This method is the counterpart to resolve():

(string) $target === (string) UriResolver::resolve($base, UriResolver::relativize($base, $target))

One use-case is to use the current request URI as base URI and then generate relative links in your documents to reduce the document size or offer self-contained downloadable document archives.

$base = new Uri('http://example.com/a/b/'); echo UriResolver::relativize($base, new Uri('http://example.com/a/b/c')); // prints 'c'. echo UriResolver::relativize($base, new Uri('http://example.com/a/x/y')); // prints '../x/y'. echo UriResolver::relativize($base, new Uri('http://example.com/a/b/?q')); // prints '?q'. echo UriResolver::relativize($base, new Uri('http://example.org/a/b/')); // prints '//example.org/a/b/'.

This method also accepts a target that is already relative and will try to relativize it further. Only a relative-path reference will be returned as-is.

echo UriResolver::relativize($base, new Uri('/a/b/c')); // prints 'c' as well

Parameters

\Psr\Http\Message\UriInterface $base

Base URI

\Psr\Http\Message\UriInterface $target

Target URI

Returns

\Psr\Http\Message\UriInterface

The relative URI reference

__construct()

__construct()