Uri\Rfc3986\Uri::getPort
PHP Manual
PHP Manual»Uri\Rfc3986\Uri»Uri\Rfc3986\Uri::getPort

Uri\Rfc3986\Uri::getPort

(PHP 8 >= 8.5.0)

Uri\Rfc3986\Uri::getPortRetrieve the normalized port component

Опис

public function Uri\Rfc3986\Uri::getPort(): ?int

Retrieves the normalized port component.

Параметри

У цієї функції немає параметрів.

Значення, що повертаються

Returns the normalized port component as an int if the port component exists, null is returned otherwise.

Приклади

Приклад #1 Uri\Rfc3986\Uri::getPort() basic example

<?php
$uri = new \Uri\Rfc3986\Uri("https://example.com:443");

echo $uri->getPort();
?>

Поданий вище приклад виведе:

443

Прогляньте також

To Top