Iri::set_path( string $ipath ): bool

In this article

Set the ipath.

Parameters

$ipathstringrequired

Return

bool

Source

protected function set_path($ipath) {
	static $cache;
	if (!$cache) {
		$cache = array();
	}

	$ipath = (string) $ipath;

	if (isset($cache[$ipath])) {
		$this->ipath = $cache[$ipath][(int) ($this->scheme !== null)];
	}
	else {
		$valid = $this->replace_invalid_with_pct_encoding($ipath, '!$&\'()*+,;=@:/');
		$removed = $this->remove_dot_segments($valid);

		$cache[$ipath] = array($valid, $removed);
		$this->ipath = ($this->scheme !== null) ? $removed : $valid;
	}
	$this->scheme_normalization();
	return true;
}

User Contributed Notes

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