Requests_Session::head()
最后更新于:2021-11-26 04:03:59
Requests_Session::head($url, $headers=array(), $options=array())Send a HEAD request
源文件
文件: gc-includes/Requests/Session.php
public function head($url, $headers = array(), $options = array()) {
return $this->request($url, $headers, null, Requests::HEAD, $options);
}