wp_parse_list() WordPress Function
The wp_parse_list() function is used to parse a string into an array. This function is useful for creating lists of data from a string. The wp_parse_list() function is located in the wp-includes/functions.php file.
wp_parse_list( array|string $list ) #
Converts a comma- or space-separated list of scalar values to an array.
Parameters
- $list
(array|string)(Required)List of values.
Return
(array) Array of values.
Source
File: wp-includes/functions.php
function wp_parse_list( $list ) { if ( ! is_array( $list ) ) { return preg_split( '/[\s,]+/', $list, -1, PREG_SPLIT_NO_EMPTY ); } return $list; }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
5.1.0 | Introduced. |