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