WordPress\AiClientDependencies\Psr\Http\Message
UriInterface::withPath
Return an instance with the specified path.
This method MUST retain the state of the current instance, and return an instance that contains the specified path.
The path can either be empty or absolute (starting with a slash) or rootless (not starting with a slash). Implementations MUST support all three syntaxes.
If the path is intended to be domain-relative rather than path relative then it must begin with a slash ("/"). Paths not starting with a slash ("/") are assumed to be relative to some base path known to the application or consumer.
Users can provide both encoded and decoded path characters. Implementations ensure the correct encoding as outlined in getPath().
Method of the class: UriInterface{}
No Hooks.
Returns
static. A new instance with the specified path.
Usage
$UriInterface = new UriInterface(); $UriInterface->withPath( $path ): UriInterface;
- $path(string) (required)
- The path to use with the new instance.
UriInterface::withPath() UriInterface::withPath code WP 7.0
public function withPath(string $path): UriInterface;