wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



wp_parse_list › WordPress Function

Od5.1.0
Przestarzałyn/a
wp_parse_list ( $input_list )
Parametry:
  • (array|string) $input_list List of values.
    Wymagane: Tak
Powrót:
  • (array) Array of values.
Zdefiniowane na:
Codex:

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



Źródło

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

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

	return $input_list;
}