WP_REST_Request::get_file_params()publicWP 4.4.0

Retrieves multipart file parameters from the body.

These are the parameters you'd typically find in $_FILES.

Метод класса: WP_REST_Request{}

Хуков нет.

Возвращает

Массив. Parameter map of key to value

Использование

$WP_REST_Request = new WP_REST_Request();
$WP_REST_Request->get_file_params();

Список изменений

С версии 4.4.0 Введена.

Код WP_REST_Request::get_file_params() WP 6.4.3

public function get_file_params() {
	return $this->params['FILES'];
}