Uses
Uses | Description |
---|---|
wp-includes/class-requests.php: Requests::request() | Main interface for HTTP requests |
Send a PUT request
File: wp-includes/class-requests.php
public static function put($url, $headers = array(), $data = array(), $options = array()) { return self::request($url, $headers, $data, self::PUT, $options); }
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/requests/put