phrity net uri
v2.1.0
PSR-7 UriInterface 和 PSR-17 UriFactoryInterface 接口的实现。
没什么花哨的。只是工作。因为我需要一个不硬连线到 HTTP 消息传递的 URI 实现。还有一些额外的东西。允许所有有效的方案。
使用 Composer 安装;
composer require phrity/net-uri
实现 PSR-7 UriInterface 并提供一些额外的方法和选项。更多信息请点击这里。
use Phrity Net Uri ;
$ uri = new Uri ( ' http://example.com/path/to/file.html?query1=1#fragment ' );
// PSR-7 getters
$ uri -> getScheme ();
$ uri -> getHost ();
$ uri -> getPort ();
$ uri -> getPath ();
$ uri -> getQuery ();
$ uri -> getFragment ();
$ uri -> getAuthority ();
$ uri -> getUserInfo ();
// PSR-7 setters
$ uri -> withScheme ( ' https ' );
$ uri -> withHost ( ' example2.com ' );
$ uri -> withPort ( 8080 );
$ uri -> withPath ( ' /path/to/another/file.html ' );
$ uri -> withQuery ( ' query2=2 ' );
$ uri -> withFragment ( ' another-fragment ' );
$ uri -> withUserInfo ( ' username ' , ' password ' );
// Additional methods
$ uri -> toString ();
$ uri -> __toString ();
$ uri -> jsonSerialize ();
$ uri -> getQueryItems ();
$ uri -> getQueryItem ( ' query1 ' );
$ uri -> withQueryItems ([ ' query1 ' => ' 1 ' , ' query2 ' => ' 2 ' ]);
$ uri -> withQueryItem ( ' query1 ' , ' 1 ' );
$ uri -> getComponents ();
$ uri -> withComponents ([ ' scheme ' => ' https ' , ' host ' => ' example2.com ' ]);
实现 PSR-17 UriFactoryInterface 并提供一些额外的方法和选项。更多信息请点击这里。
use Phrity Net UriFactory ;
$ factory = new UriFactory ();
$ factory -> createUri ( ' http://example.com/path/to/file.html ' );
$ factory -> createUriFromInterface ( new GuzzleHttp Psr7 Uri ( ' http://example.com/path/to/file.html ' ));
开箱即用,它将按照 PSR 标准指定的方式运行。要改变行为,可以使用一些修饰符。这些可以作为最后一个参数添加到所有get
和with
方法以及toString
方法中。
REQUIRE_PORT
- 尝试显示端口,即使是默认端口ABSOLUTE_PATH
- 将导致路径使用绝对形式,即以/
开头NORMALIZE_PATH
- 将尝试标准化路径IDN_ENCODE
/ IDN_DECODE
- 对非 ASCII 主机的 IDN 格式进行编码或解码URI_DECODE
/ URI_ENCODE
/ URI_ENCODE_3986
- 编码或解码 URI 组件 $ uri = new Uri ( ' http://example.com ' );
$ uri -> getPort (Uri:: REQUIRE_PORT ); // => 80
$ uri -> toString (Uri:: REQUIRE_PORT ); // => 'http://example.com:80'
$ uri = new Uri ( ' a/./path/../to//something ' );
$ uri -> getPath (Uri:: ABSOLUTE_PATH | Uri:: NORMALIZE_PATH ); // => '/a/to/something'
$ uri -> toString (Uri:: ABSOLUTE_PATH | Uri:: NORMALIZE_PATH ); // => '/a/to/something'
$ clone = $ uri -> withPath ( ' path/./somewhere/else/.. ' , Uri:: ABSOLUTE_PATH | Uri:: NORMALIZE_PATH );
$ clone -> getPath (); // => '/path/somewhere'
$ uri = new Uri ( ' https://ηßöø必Дあ.com ' );
$ uri -> getHost (Uri:: IDN_ENCODE ); // => 'xn--zca0cg32z7rau82strvd.com'
版本 | PHP | |
---|---|---|
2.1 | ^8.0 | URI 编码/解码选项 |
2.0 | ^8.0 | 查询助手、with([]) 和 getComponents() 方法、IDN 编码/解码 |
1.3 | ^7.4|^8.0 | |
1.2 | ^7.4|^8.0 | 国际DNA修饰符 |
1.1 | ^7.4|^8.0 | 需要端口、绝对路径、规范化路径修饰符 |
1.0 | ^7.4|^8.0 | 初始版本 |