WpOrg\Requests

Iri::get_iauthority()protectedWP 1.0

Get the complete iauthority

Метод класса: Iri{}

Хуков нет.

Возвращает

Строку|null.

Использование

// protected - в коде основоного (родительского) или дочернего класса
$result = $this->get_iauthority();

Код Iri::get_iauthority() WP 6.6.1

protected function get_iauthority() {
	if ($this->iuserinfo === null && $this->ihost === null && $this->port === null) {
		return null;
	}

	$iauthority = '';
	if ($this->iuserinfo !== null) {
		$iauthority .= $this->iuserinfo . '@';
	}
	if ($this->ihost !== null) {
		$iauthority .= $this->ihost;
	}
	if ($this->port !== null) {
		$iauthority .= ':' . $this->port;
	}
	return $iauthority;
}