hcelebi / url-parser-tool
Url Parser Tool
Installs: 22
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/hcelebi/url-parser-tool
Requires (Dev)
- phpunit/phpunit: 4.8.*@dev
This package is not auto-updated.
Last update: 2025-12-10 16:35:47 UTC
README
#URL Parser Tool
###Example Usage
$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");