Requests_Session::put() public WP 1.0
Send a PUT request
{} It's a method of the class: Requests_Session{}
No Hooks.
Return
Null. Nothing.
Usage
$Requests_Session = new Requests_Session(); $Requests_Session->put( $url, $headers, $data, $options );
Code of Requests_Session::put() Requests Session::put WP 5.6
public function put($url, $headers = array(), $data = array(), $options = array()) {
return $this->request($url, $headers, $data, Requests::PUT, $options);
}