Lines Matching refs:URI

357 Constructs a URI for an HTTP request message.
461 - uri: (UriInterface) Set the URI.
462 - query: (string) Set the query string value of the URI.
586 # Additional URI Methods
591 ## URI Types
593 An instance of `Psr\Http\Message\UriInterface` can either be an absolute URI or a relative referenc…
594 An absolute URI has a scheme. A relative reference is used to express a URI relative to another URI,
595 the base URI. Relative references can be divided into several forms according to
602 The following methods can be used to identify the type of the URI.
608 Whether the URI is absolute, i.e. it has a scheme.
614 Whether the URI is a network-path reference. A relative reference that begins with two slash charac…
621 Whether the URI is a absolute-path reference. A relative reference that begins with a single slash …
628 Whether the URI is a relative-path reference. A relative reference that does not begin with a slash…
635 Whether the URI is a same-document reference. A same-document reference refers to a URI that is, as…
636 fragment component, identical to the base URI. When no base URI is given, only an empty URI referen…
639 ## URI Components
641 Additional methods to work with URI components.
647 Whether the URI has the default port of the current scheme. `Psr\Http\Message\UriInterface::getPort…
654 Composes a URI reference string from its various components according to
662 Creates a URI from a hash of [`parse_url`](http://php.net/manual/en/function.parse-url.php) compone…
669 Creates a new URI with a specific query string value. Any existing query string values that exactly…
677 Creates a new URI with multiple query string values. It has the same behavior as `withQueryValue()`…
684 Creates a new URI with a specific query string value removed. Any existing query string values that…
689 …leHttp\Psr7\UriResolver` provides methods to resolve a URI reference in the context of a base URI
691 do when resolving a link in a website based on the current request URI.
697 Converts the relative URI into a new URI that is resolved against the base URI.
710 Returns the target URI as a relative reference from the base URI. This method is the counterpart to…
716 One use-case is to use the current request URI as base URI and then generate relative links in your…
736 Returns a normalized URI. The scheme and host component are already normalized to lowercase per PSR…
754 …not be created by URI producers and, when found in a URI, should be decoded to their corresponding…
755 characters by URI normalizers.
767 …Removes the default host of the given URI scheme from the URI. Only the "file" scheme defines the …
775 Removes the default port of the given URI scheme from the URI.
782 change the semantics of the URI reference.
796 …arameters with their values in alphabetical order. However, the order of parameters in a URI may be
798 of the URI.
807 `$normalizations` bitmask. The method also accepts relative URI references and returns true when th…
808 This of course assumes they will be resolved against the same base URI. If this is not the case, de…