WP_REST_Request::get_file_params() public WP 4.4.0
Retrieves multipart file parameters from the body.
These are the parameters you'd typically find in $_FILES.
{} It's a method of the class: WP_REST_Request{}
No Hooks.
Return
Array. Parameter map of key to value
Usage
$WP_REST_Request = new WP_REST_Request(); $WP_REST_Request->get_file_params();
Changelog
Since 4.4.0 | Introduced. |
Code of WP_REST_Request::get_file_params() WP REST Request::get file params WP 5.6
public function get_file_params() {
return $this->params['FILES'];
}