简体   繁体   中英

Transfer keys from a 2D array to fill a 1D array

PHP has plenty of useful functions and Im wondering if Im overlooking one that has already been built.

Lets say you have an array such as:

$first_array = array("Name"=>"Angela", "Age"=>24);

and you wanted to grab the keys from the first array to create a second array (which could then be pushed into a third array). So you need to create:

$second_array = array("Name", "Age");

Is there a way to achieve this result without this loop?:

foreach($first_array as $k=>$v){
    array_push($second_array, $k);
}

应该这样做:

array_keys($first_array);

使用array_keys($first_array)来获取所有键的数组中的$first_array

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM