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 | 初始版本 |