WordPress\AiClientDependencies\Psr\Http\Message

UriInterface::getPortpublicWP 1.0

Retrieve the port component of the URI.

If a port is present, and it is non-standard for the current scheme, this method MUST return it as an integer. If the port is the standard port used with the current scheme, this method SHOULD return null.

If no port is present, and no scheme is present, this method MUST return a null value.

If no port is present, but a scheme is present, this method MAY return the standard port for that scheme, but SHOULD return null.

Method of the class: UriInterface{}

No Hooks.

Returns

null|Int. The URI port.

Usage

$UriInterface = new UriInterface();
$UriInterface->getPort(): ?int;

UriInterface::getPort() code WP 7.0

public function getPort(): ?int;