wp_parse_list

函数
wp_parse_list ( $list )
参数
  • (array|string) $list List of values.
    Required:
返回值
  • (array) Array of values.
定义位置
相关方法
wp_parse_id_listwp_parse_strwp_parse_slug_listwp_parse_urlwp_parse_args
引入
5.1.0
弃用
-

wp_parse_list: 这个函数解析一个以逗号分隔的列表并以数组形式返回。它用于简化对列表的处理。

将一个以逗号或空格分隔的标量值列表转换为数组。

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

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

	return $list;
}

常见问题

FAQs
查看更多 >