Requests_IRI::get_iri

Advertisement

Summery Summery

Get the complete IRI

Syntax Syntax

Requests_IRI::get_iri()

Return Return

(string)

Source Source

File: wp-includes/Requests/IRI.php

	protected function get_iri() {
		if (!$this->is_valid()) {
			return false;
		}

		$iri = '';
		if ($this->scheme !== null) {
			$iri .= $this->scheme . ':';
		}
		if (($iauthority = $this->get_iauthority()) !== null) {
			$iri .= '//' . $iauthority;
		}
		$iri .= $this->ipath;
		if ($this->iquery !== null) {
			$iri .= '?' . $this->iquery;
		}
		if ($this->ifragment !== null) {
			$iri .= '#' . $this->ifragment;
		}

		return $iri;
	}

Advertisement

Advertisement

Leave a Reply