ailixter/gears-url

Description of project Gears.URL.

0.1.1 2019-08-15 17:44 UTC

This package is auto-updated.

Last update: 2024-04-20 00:26:37 UTC


README

Yet another URL class implementation.

$url = new URL('http://httpbin.org/get');
$url->setQueryParam('p', 'test');
echo $url->path;
print_r($url->query);
$url->path = 'post';
echo $url;
echo (new URL)
  ->setScheme('http')
  ->setHost('httpbin.org')
  ->setQuery(['p' -> 'test'])
  ;