hcelebi/url-parser-tool

此包最新版本(v1.0.2)没有提供许可证信息。

URL解析工具

v1.0.2 2015-10-16 06:31 UTC

This package is not auto-updated.

Last update: 2024-10-02 11:10:57 UTC


README

#URL解析工具

###示例用法

$url = "http://www.xxx.com/search/?k=word";
$urlType = new Url($url);

//Get query params as array
$query = $urlType->getQuery()->toArray();

//Get uri path
$path = $urlType->getPath();

//Update query param
$urlType->getQuery()->set("k" => "wordxx");