Requests_IRI::get_authority()
最后更新于:2021-11-26 03:57:46
Requests_IRI::get_authority()Get the complete authority
响应
(string)
源文件
文件: gc-includes/Requests/IRI.php
protected function get_authority() {
$iauthority = $this->get_iauthority();
if (is_string($iauthority)) {
return $this->to_uri($iauthority);
}
else {
return $iauthority;
}
}