savin / url
Thin wrapper over the library sabre/uri
v1.0
2020-04-09 05:16 UTC
Requires
- php: ^7.0
- illuminate/support: ^5
- sabre/uri: ^2
This package is auto-updated.
Last update: 2025-03-09 16:23:28 UTC
README
A thin wrapper over the library sabre/uri, package for framework Laravel
Installation
Via Composer
$ composer require savin/url
Usage
$url = Url::parse('https://www.google.com/search?q=curent+time');
var_dump($url);
/*
array(7) {
["scheme"]=>
string(5) "https"
["host"]=>
string(14) "www.google.com"
["path"]=>
string(7) "/search"
["query"]=>
string(13) "q=curent+time"
["port"]=>
NULL
["user"]=>
NULL
["fragment"]=>
NULL
}
*/