Requests::put()
最后更新于:2021-11-25 23:58:21
Requests::put($url, $headers=array(), $data=array(), $options=array())Send a PUT request
源文件
文件: gc-includes/class-requests.php
public static function put($url, $headers = array(), $data = array(), $options = array()) {
return self::request($url, $headers, $data, self::PUT, $options);
}