Implémentation des interfaces PSR-7 UriInterface et PSR-17 UriFactoryInterface.
Rien d'extraordinaire. Je travaille juste. Parce que j'ai besoin d'une implémentation d'URI non câblée à la messagerie HTTP. Et quelques extras. Autoriser tous les schémas valides.
Installer avec Composer ;
composer require phrity/net-uri
Implémente PSR-7 UriInterface et fournit des méthodes et options supplémentaires. Plus d'informations ici.
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 ' ]);
Implémente PSR-17 UriFactoryInterface et fournit des méthodes et options supplémentaires. Plus d'informations ici.
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 ' ));
Dès la sortie de la boîte, il se comportera comme spécifié par les normes PSR. Pour modifier le comportement, certains modificateurs sont disponibles. Ceux-ci peuvent être ajoutés comme dernier argument dans toutes les méthodes get
et with
, ainsi que la méthode toString
.
REQUIRE_PORT
- Tentative d'afficher le port, même s'il est par défautABSOLUTE_PATH
- Le chemin utilisera la forme absolue, c'est-à-dire commençant par /
NORMALIZE_PATH
- Tentera de normaliser le cheminIDN_ENCODE
/ IDN_DECODE
- Encode ou décode le format IDN pour un hôte non-ASCIIURI_DECODE
/ URI_ENCODE
/ URI_ENCODE_3986
- Encoder ou décoder les composants 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'
Version | PHP | |
---|---|---|
2.1 | ^8.0 | Options d'encodage/décodage URI |
2.0 | ^8.0 | Assistants de requête, méthodes with([]) et getComponents(), encodage/décodage IDN |
1.3 | ^7.4|^8.0 | |
1.2 | ^7.4|^8.0 | Modificateur IDNA |
1.1 | ^7.4|^8.0 | Exiger un port, un chemin absolu, normaliser les modificateurs de chemin |
1.0 | ^7.4|^8.0 | Version initiale |