Converts a comma- or space-separated list of scalar values to an array.
Parameters
$input_list
array|stringrequired- List of values.
Source
* Converts a comma- or space-separated list of scalar values to an array.
*
* @since 5.1.0
*
* @param array|string $input_list List of values.
* @return array Array of values.
*/
function wp_parse_list( $input_list ) {
if ( ! is_array( $input_list ) ) {
return preg_split( '/[\s,]+/', $input_list, -1, PREG_SPLIT_NO_EMPTY );
Changelog
Version | Description |
---|---|
5.1.0 | Introduced. |
Example:
Output: