Requests_IRI::set_query()
最后更新于:2021-11-26 04:00:07
Requests_IRI::set_query( string$iquery)Set the iquery.
参数
- $iquery
-
(string) (Required)
响应
(bool)
源文件
文件: gc-includes/Requests/IRI.php
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;
}