Requests_Session::patch()
Send a PATCH request
Note: Unlike {@see post} and {@see put}, $headers is required, as the specification recommends that should send an ETag
{} It's a method of the class: Requests_Session{}
No Hooks.
Return
null
. Nothing.
Usage
$Requests_Session = new Requests_Session(); $Requests_Session->patch( $url, $headers, $data, $options );
- $url (required)
- -
- $headers (required)
- -
- $data **
- -
Default: array() - $options **
- -
Default: array()
Code of Requests_Session::patch() Requests Session::patch WP 6.0
public function patch($url, $headers, $data = array(), $options = array()) { return $this->request($url, $headers, $data, Requests::PATCH, $options); }