ailixter/gears-url

Gears.URL项目的描述。

0.1.1 2019-08-15 17:44 UTC

This package is auto-updated.

Last update: 2024-09-20 01:21:44 UTC


README

又一个URL类实现。

$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'])
  ;