Skip to main content

PSR-7 URI Implementation

Sponsor Build Status Opensource ByJG GitHub source GitHub license GitHub release

A PHP implementation of PSR-7 UriInterface with additional utility methods.

Features

  • Fully compliant with PSR-7 UriInterface
  • Includes additional utility methods via CustomUriInterface
  • Supports RFC3986 URI specification
  • Type-safe implementation with PHP 8 attributes and strict typing
  • Immutable class design pattern

URI Encoding Behavior

PSR-7 requires URI compliant with RFC3986. This means the URI output will always be URL encoded. This applies to both creating a new instance and the string representation.

Examples:

// Creating a URI with special characters in the password
$uri = \ByJG\Util\Uri::getInstance("https://user:pa&@host");
print((string)$uri); // Will print "https://user:pa%26@host"

// Creating a URI with already encoded characters
$uri = \ByJG\Util\Uri::getInstance("https://user:pa%26@host");
print((string)$uri); // Will print "https://user:pa%26@host"

// Using withUserInfo with unencoded password
$uri = \ByJG\Util\Uri::getInstance("https://host")
->withUserInfo("user", "pa&");
print((string)$uri); // Will print "https://user:pa&@host"

// Using withUserInfo with already encoded password
$uri = \ByJG\Util\Uri::getInstance("https://host")
->withUserInfo("user", "pa%26");
print((string)$uri); // Will print "https://user:pa%2526@host"

Additional Methods

This implementation extends PSR-7 UriInterface with the following additional methods through \ByJG\Util\CustomUriInterface:

MethodDescription
getUsername(): ?stringGet the username component of the URI
getPassword(): ?stringGet the password component of the URI
getQueryPart(string $key): ?stringGet a specific query parameter by key
withQueryKeyValue(string $key, string $value, bool $isEncoded = false): selfAdd or update a query parameter
hasQueryKey(string $key): boolCheck if a query parameter exists

Static Factory Methods

The class provides convenient static factory methods:

// Create from string
$uri = Uri::getInstance("https://example.com/path?query=value#fragment");

// Create from another UriInterface
$uri2 = Uri::getInstance($uri);

Documentation

Install

composer require "byjg/uri"

Unit tests

vendor/bin/phpunit

Dependencies


Open source ByJG