exteon/uri
Composer 安装命令:
composer require exteon/uri
包简介
A set of objects for parsing, composing and manipulating URIs
README 文档
README
Provides a set of objects for parsing, composing and manipulating URIs
Parsing an URI string:
use Exteon\Uri\Uri; $uri = Uri::fromString('http://user:pass@foo.bar:8080/path/to?query#fragment'); var_dump( $uri->getScheme(), $uri->getUser(), $uri->getPass(), $uri->getHost(), $uri->getPort(), $uri->getPath(), $uri->getQueryString(), $uri->getFragment() );
Generating an URI string:
use Exteon\Uri\Uri; $uri = new Uri( 'http', 'foo.bar', '8080', 'user', 'pass', 'path/to', 'query', 'fragment' ); var_dump($uri->toString());
Note
The magic __toString() method is not implemented, I find its meaning to be
semantically inconsistent so use the explicit toString().
URI manipulation
Note
Uri objects are not immutable; make sure you clone where appropriate before
performing manipulation.
Setters
You can use
setScheme(), setUser(), setPass(), setHost(), setPort(), setPath(), setQueryString(), setFragment()
setters to modify an URI.
Base and relative urls, composition
The Uri object can be used to combine relative URIs to a base URI:
use Exteon\Uri\Uri; $baseUri = Uri::fromString('scheme://host/root/?query#fragment'); $uri = Uri::fromString('a'); $uri->composeWithBase($baseUri); echo $uri->toString(); // scheme://host/root/a $uri = Uri::fromString('/a'); $uri->composeWithBase($baseUri); echo $uri->toString(); // scheme://host/a $uri = Uri::fromString('://host2/a'); $uri->composeWithBase($baseUri); echo $uri->toString(); // scheme://host2/a $uri = Uri::fromString(''); $uri->composeWithBase($baseUri); echo $uri->toString(); // scheme://host/root/?query#fragment $uri = Uri::fromString('#fragment2'); $uri->composeWithBase($baseUri); echo $uri->toString(); // scheme://host/root/?query#fragment2 $uri = Uri::fromString('?query2'); $uri->composeWithBase($baseUri); echo $uri->toString(); // scheme://host/root/?query2 $uri = Uri::fromString('?query2#fragment2'); $uri->composeWithBase($baseUri); echo $uri->toString(); // scheme://host/root/?query2#fragment2 $baseUri = Uri::fromString('scheme://host/root/a?query#fragment'); $uri = Uri::fromString('b'); $uri->composeWithBase($baseUri); echo $uri->toString(); // scheme://host/root/b
The converse to composeWithBase() is applyRelative(), which is perfectly
symmetrical when run on the base URI with a relative URI as parameter.
A relative URL can also be derived from an absolute URL and a base URL:
use Exteon\Uri\Uri; $baseUri = Uri::fromString('scheme://host/a/b?query#fragment'); $uri = Uri::fromString('scheme://host/a/b?query#fragment'); $uri->makeRelativeToBase($baseUri); echo $uri->toString(); // $uri = Uri::fromString('scheme://host/a/b?query'); $uri->makeRelativeToBase($baseUri); echo $uri->toString(); // # $uri = Uri::fromString('scheme://host/a/b'); $uri->makeRelativeToBase($baseUri); echo $uri->toString(); // ? $uri = Uri::fromString('scheme://host/a/b#fragment'); $uri->makeRelativeToBase($baseUri); echo $uri->toString(); // ?#fragment $uri = Uri::fromString('scheme://host/a/b?query#fragment2'); $uri->makeRelativeToBase($baseUri); echo $uri->toString(); // #fragment2 $uri = Uri::fromString('scheme://host/a/b?query2#fragment'); $uri->makeRelativeToBase($baseUri); echo $uri->toString(); // ?query2#fragment $uri = Uri::fromString('scheme://host/a/c?query#fragment'); $uri->makeRelativeToBase($baseUri); echo $uri->toString(); // c?query#fragment $uri = Uri::fromString('scheme://host/a?query#fragment'); $uri->makeRelativeToBase($baseUri); echo $uri->toString(); // /a?query#fragment $uri = Uri::fromString('scheme://host2/a/b?query#fragment'); $uri->makeRelativeToBase($baseUri); echo $uri->toString(); // ://host2/a/b?query#fragment $baseUri = Uri::fromString('scheme:a/b'); $uri = Uri::fromString('scheme:a'); $uri->makeRelativeToBase($baseUri); echo $uri->toString(); // :a
Note
Uri will allow parsing and generate relative empty-scheme URIs of the form
://host/path, which are not allowed by
RFC 3986 but are a regular occurence in
browser urls to specify 'same protocol as browsed page'.
Note
Be mindful about trailing / in paths; the library uses the browser composition
algorithm: a relative url of bar composed with base urls foo and foo/ will
yield bar and foo/bar respectively. The exception to this is the
UnixPathUri.
ascend() and descend()
While not present in RFC 3986, it has
become quite ubiquitous that the path component of an URI is a trail of
hierarchically organized components separated by /. To serve this convention,
all URI objects implement the ascend() and descend() functions.
public function ascend(int $levels = 1): self;
use Exteon\Uri\Uri; $uri = Uri::fromString('a/b?qs'); $uri->ascend(); var_dump($uri->toString()); // a/
Note
When using ascend(), the resulting URI will always be considered a directory and
have the trailing slash.
public function descend(string $path): self;
use Exteon\Uri\Uri; $uri = Uri::fromString('a/b?qs'); $uri->descend('c/d'); var_dump($uri->toString()); // a/c/d
Note
When using descend(), the Web convention, applying the descending path to the
URI directory, as in the example above. Because a/b does not include a
trailing slash, the directory part is a/ to which c/d is applied.
The exception to the above described behavior is the
UnixPathUri.
PHP URIs
With Uri, the query string is not assigned any special meaning. You can use
the PHPUri object to parse and generate PHP query strings:
use Exteon\Uri\PhpUri; $initial = '?foo=bar'; $uri = PhpUri::fromString($initial); var_dump($uri->getQuery()); // ['foo' => 'bar']
use Exteon\Uri\PhpUri; $uri = new PhpUri(); $uri->setQuery(['foo' => 'bar']); echo $uri->toString(); // ?foo=bar
Note
PHP's http_build_query() silently discards keys for NULL values in query
string aggregation. For consistency's sake, you must explicitly handle
null values. For this PHPUri provides two helper methods:
nullValuesToEmptyString() and nullValuesUnset() (the default PHP behavior)
which you can use on the query before passing to the constructor or
setQuery(). If an array with null values is passed to setQuery(), an
InvalidArgumentException will be thrown.
Unix path URIs
The UnixPathUri models an URI that can only have a path part (no scheme, host,
query string, fragment). They can be composed just like the Web URIs, but with a
quite important different convention:
For UnixPathUri, getDirectory() and getPath() represent the same resource
even if the URI does not have a trailing slash.
Example:
use Exteon\Uri\UnixPathUri; $uri = UnixPathUri::fromString('/a/b'); var_dump($uri->getPath()); // /a/b var_dump($uri->getDirectory()); // /a/b/ // Uri::getDirectory() would have been "/a/"
This has implications on the way relative URIs are applied and derived. For instance:
use Exteon\Uri\UnixPathUri; $base = UnixPathUri::fromString('/a'); $relative = UnixPathUri::fromString('b'); $relative->composeWithBase($base); var_dump($relative->toString()); // /a/b // With Uri, the result would have been "/b"
In a more intuitive way, the UnixPathUri URI type acts just like a Unix shell
path, and the relative URIs act just like running a cd command on the base
URI. Special path fragments like . and .. are obviously not implemented,
you can use the ascend() method to model going to an upper dir.
UnixPathUri can be combined with other types of URIs (i.e. a relative
UnixPathUri can be combined with a root web Uri via Uri::applyRelative())
resulting in a full Web Uri.
exteon/uri 适用场景与选型建议
exteon/uri 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 54 次下载、GitHub Stars 达 0, 最近一次更新时间为 2021 年 02 月 18 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 exteon/uri 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 exteon/uri 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 54
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: Apache-2.0
- 更新时间: 2021-02-18