Requests_IRI::get_authority

Advertisement

Summery Summery

Get the complete authority

Syntax Syntax

Requests_IRI::get_authority()

Return Return

(string)

Source Source

File: wp-includes/Requests/IRI.php

	protected function get_authority() {
		$iauthority = $this->get_iauthority();
		if (is_string($iauthority)) {
			return $this->to_uri($iauthority);
		}
		else {
			return $iauthority;
		}
	}

Advertisement

Advertisement

Leave a Reply