Iri::set_port( string $port ): bool

In this article

Set the port. Returns true on success, false on failure (if there are any invalid characters).

Parameters

$portstringrequired

Return

bool

Source

protected function set_port($port) {
	if ($port === null) {
		$this->port = null;
		return true;
	}

	if (strspn($port, '0123456789') === strlen($port)) {
		$this->port = (int) $port;
		$this->scheme_normalization();
		return true;
	}

	$this->port = null;
	return false;
}

User Contributed Notes

You must log in before being able to contribute a note or feedback.