PHP更改数组键

时间:2008-11-21 13:09:54

标签: php

Array( 0 => 'blabla',
       1 => 'blabla',
       2 => 'blblll' ) etc..

有没有办法将所有数字键更改为“Name”而不循环遍历数组(所以是php函数)?

12 个答案:

答案 0 :(得分:99)

如果您要使用一系列密钥,请使用array_combine

给定$ keys = array('a','b','c',...)和你的数组$ list,然后执行以下操作:

$list = array_combine($keys, array_values($list));

列表现在将是数组('a'=>'blabla 1',...)等。

您必须使用array_values仅提取数组中的值,而不是旧的数字键。

这看起来很简单,但是array_values会生成数组的完整副本,因此您可能会遇到空间问题。我们在这里所做的就是让php为我们做循环,而不是消除循环。我很想做更像的事情:

foreach ($list as $k => $v) {
   unset ($list[$k]);

   $new_key =  *some logic here*

   $list[$new_key] = $v;
}

我认为它不比第一个代码更有效,但它提供了更多的控制,并且不会出现数组长度的问题。

答案 1 :(得分:22)

不,对于初学者来说,不可能有一个元素共享同一个键的数组

$x =array(); 
$x['foo'] = 'bar' ; 
$x['foo'] = 'baz' ; #replaces 'bar'

其次,如果您希望仅为数字添加前缀

$x[0] --> $x['foo_0']  

如果没有循环,这在计算上是不可信的。目前没有用于“键前缀”任务的PHP函数,最接近的是"extract",它将在使数字键成为变量之前作为数字键的前缀。

最简单的方法是:

function rekey( $input , $prefix ) { 
    $out = array(); 
    foreach( $input as $i => $v ) { 
        if ( is_numeric( $i ) ) { 
            $out[$prefix . $i] = $v; 
            continue; 
        }
        $out[$i] = $v;
    }
    return $out;
}

此外,在阅读XMLWriter用法时,我相信你会以糟糕的方式编写XML。

<section> 
    <foo_0></foo_0>
   <foo_1></foo_1>
   <bar></bar>
   <foo_2></foo_2>
</section>

不是很好的XML。

<section> 
   <foo></foo>
   <foo></foo>
   <bar></bar>
   <foo></foo>
</section>

是更好的XML,因为在使用intrepreted时,重复的名称无关紧要,因为它们都是数字偏移的,如下所示:

section => { 
    0 => [ foo , {} ]
    1 => [ foo , {} ]
    2 => [ bar , {} ]
    3 => [ foo , {} ] 
}

答案 2 :(得分:4)

$prefix = '_';
$arr = array_combine(
    array_map(function($v) use ($prefix){
       return $prefix.$v;
    }, array_keys($arr)),
    array_values($arr)
);

答案 3 :(得分:4)

我添加了这个来回答另一个问题并且看似相关。希望可以帮助那些需要更改数组中键值的人。使用php的内置函数。

$inputArray = array('app_test' => 'test', 'app_two' => 'two');

/**
 * Used to remap keys of an array by removing the prefix passed in
 * 
 * Example:
 * $inputArray = array('app_test' => 'test', 'app_two' => 'two');
 * $keys = array_keys($inputArray);
 * array_walk($keys, 'removePrefix', 'app_');
 * $remappedArray = array_combine($keys, $inputArray);
 *
 * @param $value - key value to replace, should be from array_keys
 * @param $omit - unused, needed for prefix call
 * @param $prefix - prefix to string replace in keys
 */
function removePrefix(&$value, $omit, $prefix) {
    $value = str_replace($prefix, '', $value);
}

// first get all the keys to remap
$keys = array_keys($inputArray);

// perform internal iteration with prefix passed into walk function for dynamic replace of key
array_walk($keys, 'removePrefix', 'app_');

// combine the rewritten keys and overwrite the originals
$remappedArray = array_combine($keys, $inputArray);

// see full output of comparison
var_dump($inputArray);
var_dump($remappedArray);

输出:

array(2) {
  'attr_test' =>
  string(4) "test"
  'attr_two' =>
  string(3) "two"
}
array(2) {
  'test' =>
  string(4) "test"
  'two' =>
  string(3) "two"
}

答案 4 :(得分:2)

当您使用XMLWriter(原生于PHP 5.2.x&lt;)的解决方案是使用$xml->startElement('itemName');时,这将替换数组键。

答案 5 :(得分:2)

我认为他想要:

$a = array(1=>'first_name', 2=>'last_name');
$a = array_flip($a);

$a['first_name'] = 3;
$a = array_flip($a);

print_r($a);

答案 6 :(得分:2)

将数组键名“group”更改为“children”。

<?php
echo json_encode($data);

function array_change_key_name( $orig, $new, &$array ) {
    foreach ( $array as $k => $v ) {
        $res[ $k === $orig ? $new : $k ] = ( (is_array($v)||is_object($v)) ? array_change_key_name( $orig, $new, $v ) : $v );
    }
    return $res;
}

echo '<br>=====change "group" to "children"=====<br>';
$new = array_change_key_name("group" ,"children" , $data);
echo json_encode($new);
?>

结果:

{"benchmark":[{"idText":"USGCB-Windows-7","title":"USGCB: Guidance for Securing Microsoft Windows 7 Systems for IT Professional","profile":[{"idText":"united_states_government_configuration_baseline_version_1.2.0.0","title":"United States Government Configuration Baseline 1.2.0.0","group":[{"idText":"security_components_overview","title":"Windows 7 Security Components Overview","group":[{"idText":"new_features","title":"New Features in Windows 7"}]},{"idText":"usgcb_security_settings","title":"USGCB Security Settings","group":[{"idText":"account_policies_group","title":"Account Policies group"}]}]}]}]}

=====change "group" to "children"=====

{"benchmark":[{"idText":"USGCB-Windows-7","title":"USGCB: Guidance for Securing Microsoft Windows 7 Systems for IT Professional","profile":[{"idText":"united_states_government_configuration_baseline_version_1.2.0.0","title":"United States Government Configuration Baseline 1.2.0.0","children":[{"idText":"security_components_overview","title":"Windows 7 Security Components Overview","children":[{"idText":"new_features","title":"New Features in Windows 7"}]},{"idText":"usgcb_security_settings","title":"USGCB Security Settings","children":[{"idText":"account_policies_group","title":"Account Policies group"}]}]}]}]}

答案 7 :(得分:1)

在php中使用数组array_flip

$array = array ( [1] => Sell [2] => Buy [3] => Rent [4] => Jobs )
print_r(array_flip($array));
Array ( [Sell] => 1 [Buy] => 2 [Rent] => 3 [Jobs] => 4 ) 

答案 8 :(得分:1)

我为一组对象做了这个。它基本上在同一个数组中创建新键并取消设置旧键。

public function transform($key, $results)
{
    foreach($results as $k=>$result)
    {
        if( property_exists($result, $key) )
        { 
            $results[$result->$key] = $result;
            unset($results[$k]);
        }
    }

    return $results;
}

答案 9 :(得分:1)

<?php
    $array[$new_key] = $array[$old_key];
    unset($array[$old_key]);
?>

答案 10 :(得分:1)

要拥有相同的密钥,我认为它们必须位于单独的嵌套数组中。

for ($i = 0; $i < count($array); $i++) {
    $newArray[] = ['name' => $array[$i]];
};

输出:

0 => array:1 ["name" => "blabla"]
1 => array:1 ["name" => "blabla"]
2 => array:1 ["name" => "blblll"]

答案 11 :(得分:-4)

您可以创建一个包含该数组的新数组,所以:

<?php
$array = array();
$array['name'] = $oldArray;
?>