rest_sanitize_array()
Converts an array-like value to an array.
Uses: wp_parse_list()
No Hooks.
Return
Array
. Returns the array extracted from the value.
Usage
rest_sanitize_array( $maybe_array );
- $maybe_array(mixed) (required)
- The value being evaluated.
Changelog
Since 5.5.0 | Introduced. |
Code of rest_sanitize_array() rest sanitize array WP 6.0.1
function rest_sanitize_array( $maybe_array ) { if ( is_scalar( $maybe_array ) ) { return wp_parse_list( $maybe_array ); } if ( ! is_array( $maybe_array ) ) { return array(); } // Normalize to numeric array so nothing unexpected is in the keys. return array_values( $maybe_array ); }