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 | IDNA修飾子 |
1.1 | ^7.4|^8.0 | ポート、絶対パス、正規化パス修飾子が必要 |
1.0 | ^7.4|^8.0 | 初期バージョン |