Requests_IRI::set_query()
Set the iquery.
{} It's a method of the class: Requests_IRI{}
No Hooks.
Return
true|false
.
Usage
// protected - for code of main (parent) or child class $result = $this->set_query( $iquery );
- $iquery(string) (required)
- -
Code of Requests_IRI::set_query() Requests IRI::set query WP 6.0
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; }