WpOrg\Requests

Iri::set_query()protectedWP 1.0

Set the iquery.

Метод класса: Iri{}

Хуков нет.

Возвращает

true|false.

Использование

// protected - в коде основоного (родительского) или дочернего класса
$result = $this->set_query( $iquery );
$iquery(строка) (обязательный)
-

Код Iri::set_query() WP 6.7.1

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;
}