wp_array_slice_assoc 通过指定的keys切割数组提取数组中得部分数据为一个新的数组。

Posted in:
Update time:2020-10-27

函数描述

通过指定的 keys 提取数组中的部分数据为一个新的数组。我们可以使用这个函数从一个大的数组中提取我们需要的数据生成一个小的数组,方便使用。

Usage

wp_array_slice_assoc( $array, $keys )

parameters

parametersdata typeRequired or notdescriptivedefault value
$arrayarraysbe需要处理的原始数组not have
$keyarraysbe需要提取数据的keynot have

return value

(array) 切割后的新数组

usage example

下面的例子中,我们中数据库中获取主题设置数据,这个数据是一个数组,里面包含了很多项主题设置,我们只需要 key_1, key_4, key_5 这三项,使用下面的代码提取后,我们就可以得到一个只包含这三项数据的数组。

$options= get_option( 'my_theme' );
 
$needed_keys = array(
   'key_1',
   'key_4',
   'key_5',
);

$filtered_keys = wp_array_slice_assoc( $options, $needed_keys );

源代码

该函数的源代码非常简单,如果在其他系统中需要用到类似的功能,可以参考。

function wp_array_slice_assoc( $array, $keys ) {
    $slice = array();
    foreach ( $keys as $key )
        if ( isset( $array[ $key ] ) )
            $slice[ $key ] = $array[ $key ];
 
    return $slice;
}

We offer WordPress Themes and Plugins Custom Development Services

This site has long undertaken WordPress themes, plugins, WooCommerce-based store mall development business. We have 10 years of experience in WordPress development, if you want to Developing Websites with WordPress, please contact WeChat: iwillhappy1314 or email: amos@wpcio.com for inquiries.

发表回复

Your email address will not be published. 必填项已用 * 标注

*