wp_list_pluck

函数
wp_list_pluck ( $list, $field, $index_key = null )
参数
  • (array) $list List of objects or arrays.
    Required:
  • (int|string) $field Field from the object to place instead of the entire object.
    Required:
  • (int|string) $index_key Optional. Field from the object to use as keys for the new array. Default null.
    Required:
    Default: null
返回值
  • (array) Array of found values. If `$index_key` is set, an array of found values with keys corresponding to `$index_key`. If `$index_key` is null, array keys from the original `$list` will be preserved in the results.
定义位置
相关方法
wp_list_catswp_list_pageswp_set_post_lockwp_list_userswp_insert_link
引入
3.1.0
弃用
-

wp_list_pluck: 这个函数从一个对象数组中提取一个特定的字段并返回一个包含该字段值的数组。它对于从WordPress函数(如get_posts)返回的数组中提取数据很有用。

从数组中的每个对象或数组中抽取某个字段。

这与array_column()(PHP 5.5)的功能和原型相同,但也支持对象。

function wp_list_pluck( $list, $field, $index_key = null ) {
	if ( ! is_array( $list ) ) {
		return array();
	}

	$util = new WP_List_Util( $list );

	return $util->pluck( $field, $index_key );
}

常见问题

FAQs
查看更多 >