wp_parse_list( array|string $list )

Cleans up an array, comma- or space-separated list of scalar values.


Description Description


Parameters Parameters

$list

(array|string) (Required) List of values.


Top ↑

Return Return

(array) Sanitized array of values.


Top ↑

Source 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;
}

Top ↑

Changelog Changelog

Changelog
Version Description
5.1.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.