wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_parse_list › WordPress Function

Seit5.1.0
Veraltetn/v
wp_parse_list ( $input_list )
Parameter:
  • (array|string) $input_list List of values.
    Erforderlich: Ja
Gibt zurück:
  • (array) Array of scalar values. A string is split into a list, while an array
    keeps its keys, so the result is not necessarily a list.
Definiert in:
Codex:

Converts a comma- or space-separated list of scalar values to an array.



Quellcode

function wp_parse_list( $input_list ): array {
	if ( ! is_array( $input_list ) ) {
		$parsed_list = preg_split( '/[\s,]+/', $input_list, -1, PREG_SPLIT_NO_EMPTY );
		return is_array( $parsed_list ) ? $parsed_list : array();
	}

	// Validate all entries of the list are scalar.
	$input_list = array_filter( $input_list, 'is_scalar' );

	return $input_list;
}