Requests_Session::delete()

最后更新于:2021-11-26 04:03:41

Requests_Session::delete($url, $headers=array(), $options=array())

Send a DELETE request

源文件

文件: gc-includes/Requests/Session.php

	public function delete($url, $headers = array(), $options = array()) {
		return $this->request($url, $headers, null, Requests::DELETE, $options);
	}