Class to easy work with URI, getting its part etc.

v1.0.0 2020-05-14 09:13 UTC

This package is auto-updated.

Last update: 2024-04-14 18:26:48 UTC


README

PHP Class to easy work with URI, getting its part etc.

Downloads this Month Repository size License Version

<?php
require 'vendor/autoload.php';
use AlexKratky\URL;

// e.g. visiting https://panx.eu/docs/v0.2.4/getting-started/
$url = new URL();
$url->getString();      //  /docs/v0.2.4/getting-started
$url->getElements();    //  [0] => '', [1] => 'docs', [2] => 'v0.2.4', [3] => 'getting-started'
$url->getCount();       //  3
foreach($url->getLink() as $v) {
    echo $v . "\n";
}

Prints:

docs
v0.2.4
getting-started