Iri::set_query( string $iquery ): bool

In this article

Set the iquery.

Parameters

$iquerystringrequired

Return

bool

Source

protected function set_query($iquery) {
	if ($iquery === null) {
		$this->iquery = null;
	}
	else {
		$this->iquery = $this->replace_invalid_with_pct_encoding($iquery, '!$&\'()*+,;=:@/?', true);
		$this->scheme_normalization();
	}
	return true;
}

User Contributed Notes

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