SimplePie_IRI::get_iauthority

Advertisement

Summery Summery

Get the complete iauthority

Syntax Syntax

SimplePie_IRI::get_iauthority()

Return Return

(string)

Source Source

File: wp-includes/SimplePie/IRI.php

	protected function get_iauthority()
	{
		if ($this->iuserinfo !== null || $this->ihost !== null || $this->port !== null)
		{
			$iauthority = '';
			if ($this->iuserinfo !== null)
			{
				$iauthority .= $this->iuserinfo . '@';
			}
			if ($this->ihost !== null)
			{
				$iauthority .= $this->ihost;
			}
            if ($this->port !== null && $this->port !== 0)
			{
				$iauthority .= ':' . $this->port;
			}
			return $iauthority;
		}

		return null;
	}

	/**

Advertisement

Advertisement

Leave a Reply