WP_REST_Request::get_params()
Retrieves merged parameters from the request.
The equivalent of get_param(), but returns all parameters for the request. Handles merging all the available values into a single array.
Метод класса: WP_REST_Request{}
Хуков нет.
Возвращает
Массив
. Map of key to value.
Использование
$WP_REST_Request = new WP_REST_Request(); $WP_REST_Request->get_params();
Список изменений
С версии 4.4.0 | Введена. |
Код WP_REST_Request::get_params() WP REST Request::get params WP 6.6.2
public function get_params() { $order = $this->get_parameter_order(); $order = array_reverse( $order, true ); $params = array(); foreach ( $order as $type ) { /* * array_merge() / the "+" operator will mess up * numeric keys, so instead do a manual foreach. */ foreach ( (array) $this->params[ $type ] as $key => $value ) { $params[ $key ] = $value; } } return $params; }