--- layout: default title: The Hierarchical Path component --- # The Hierarchical Path component The library provides a `HierarchicalPath` class to ease HTTP like path creation and manipulation. This URI component object exposes : - the [package common API](/components/2.0/api/) - the [path common API](/components/2.0/path) It also provides specific methods to work with segments-type URI path components.

If the modifications do not change the current object, it is returned as is, otherwise, a new modified object is returned.

When a modification fails a League\Uri\Contracts\UriException exception is thrown.

## Instantiation ### Using the default constructor ~~~php submitted string is normalized to be RFC3986 compliant.

If the submitted value is not valid a League\Uri\Components\Exception exception is thrown.

### Using a string A string or an PHP object exposing a `__toString` method can be used to instantiate a new object with the following named constructor. ~~~php getContent(); //returns 'path/to/the/sky' ~~~ ### Using a collection of path segments. A path is a collection of segment delimited by the path delimiter `/`. So it is possible to create a `HierarchicalPath` object using a collection of segments with the `HierarchicalPath::createFromSegments` method. The method expects at most 2 arguments: - The first required argument must be a collection of segments (an `array` or a `Traversable` object) - The second optional argument, a `HierarchicalPath` constant, tells whether this is a rootless path or not: - `HierarchicalPath::IS_ABSOLUTE`: the created object will represent an absolute path; - `HierarchicalPath::IS_RELATIVE`: the created object will represent a rootless path; ~~~php To force the end slash when using the Path::createFromSegments method you need to add an empty string as the last member of the submitted array.

## Manipulating the path as a filesystem path The `HierarchicalPath` allows you to access and manipulate the path as if it was a filesystem path. ### Accessing the path ~~~php getExtension(); //return 'txt' $path->getBasename(); //return 'sky.txt' $path->getDirname(); //return '/path/to/the' ~~~ ### Modifying the path ~~~php withExtension will throw an League\Uri\Components\Exception exception if the extension contains the path delimiter.

#### Usage ~~~php withDirname('/foo') ->withExtension('csv'); echo $new_path; // display /foo/sky.csv;foo=bar $alt_path = $path ->withBasename('paradise.html'); echo $alt_path; // display /path/to/the/paradise.html ~~~ ## The path as a collection of segments ~~~php A path ending with a slash will have an empty string as the last member of its array representation.

~~~php segments(); //return ['path', 'to', 'the', 'sky']; $absolute_path = new HierarchicalPath('/path/to/the/sky/'); $absolute_path->segments(); //return ['path', 'to', 'the', 'sky', '']; $relative_path = new HierarchicalPath('path/to/the/sky/'); $relative_path->segments(); //return ['path', 'to', 'the', 'sky', '']; ~~~ The class implements PHP's `Countable` and `IteratorAggregate` interfaces. This means that you can count the number of segments and use the `foreach` construct to iterate overs them. ~~~php $segment) { //do something meaningful here } ~~~ ### Accessing the segments offset If you are interested in getting all the segments offsets you can do so using the `HierarchicalPath::keys` method like shown below: ~~~php keys(); //return [0, 1, 2, 3]; $path->keys('sky'); //return [3]; $path->keys('gweta'); //return []; ~~~ The method returns all the segment keys, but if you supply an argument, only the keys whose segment value equals the argument are returned.

The supplied argument is decoded to enable matching the corresponding keys.

### Accessing the segments content If you are only interested in a given segment you can access it directly using the `HierarchicalPath::getSegment` method as show below: ~~~php get(0); //return 'path' $path->get(23); //return null $path->get(23, 'now'); //return 'now' ~~~

HierarchicalPath::getSegment always returns the decoded representation.

If the offset does not exists it will return the value specified by the optional second argument or `null`.

HierarchicalPath::getSegment supports negative offsets

~~~php get(-1); //return 'sky' $path->get(-23); //return null $path->get(-23, 'now'); //return 'now' ~~~ ## Manipulating the path segments ### Append segments To append segments to the current object you need to use the `HierarchicalPath::append` method. This method accept a single argument which represents the data to be appended. This data can be a string, an object which implements the `__toString` method or another `HierarchicalPath` object: ~~~php append('path')->append('to/the/sky'); $newPath->__toString(); //return path/to/the/sky ~~~ ### Prepend segments To prepend segments to the current path you need to use the `HierarchicalPath::prepend` method. This method accept a single argument which represents the data to be prepended. This data can be a string, an object which implements the `__toString` method or another `HierarchicalPath` object: ~~~php prepend('sky')->prepend('path/to/the'); $newPath->__toString(); //return path/to/the/sky ~~~ ### Replace segments To replace a segment you must use the `HierarchicalPath::withSegment` method with the following arguments: - `$offset` which represents the segment offset to remove if it exists. - `$data` which represents the data to be inject. This data can be a string, an object which implements the `__toString` method or another `HierarchicalPath` object. ~~~php withSegment(0, 'bar/baz'); $newPath->__toString(); //return /bar/baz/example/com ~~~

Just like the HierarchicalPath::getSegment this method supports negative offset.

if the specified offset does not exists, no modification is performed and the current object is returned.

### Remove segments To remove segments from the current object and returns a new `HierarchicalPath` object without them you must use the `HierarchicalPath::withoutSegments` method. This method expects a single argument. This argument is an array containing a list of parameter names to remove. ~~~php withoutSegment(0, 1); $newPath->__toString(); //return '/the/sky' ~~~

Just like the HierarchicalPath::getSegment this method supports negative offset.

if the specified offset does not exists, no modification is performed and the current object is returned.