enrise / urihelper
此包已被废弃且不再维护。未建议替代包。
PHP的通用URI辅助类
1.0.2
2015-04-21 08:40 UTC
Requires
- php: >=5.4
Requires (Dev)
- phpunit/phpunit: ~4.0
This package is not auto-updated.
Last update: 2022-10-29 07:27:56 UTC
README
这是一个已不再使用或维护的旧仓库。我们建议不再使用此仓库。
原始README如下
UriHelper
一个简单的URI辅助类,实现了以下RFC/STD的实现
用法
$uri = new \Enrise\Uri('http://usr:pss@example.com:81/mypath/myfile.html?a=b&b[]=2&b[]=3#myfragment'); echo $uri->getScheme(); // http echo $uri->getUser(); // usr echo $uri->getPass(); // pss echo $uri->getHost(); // example.com echo $uri->getPort(); // 81 echo $uri->getPath(); // /mypath/myfile.html echo $uri->getQuery(); // a=b&b[]=2&b[]=3 echo $uri->getFragment(); // myfragment echo $uri->isSchemeless(); // false echo $uri->isRelative(); // false $uri->setScheme('scheme:child:scheme.VALIDscheme123:'); $uri->setPort(null); echo $uri->getUri(); // scheme:child:scheme.VALIDscheme123:usr:pss@example.com/mypath/myfile.html?a=b&b[]=2&b[]=3#myfragment
use \Enrise\Uri; $uri = new Uri('/relative/url.html'); echo $uri->getScheme(); // null echo $uri->getHost(); // null echo $uri->getPath(); // /relative/url.html echo $uri->isSchemeless(); // true echo $uri->isRelative(); // true