在多维数组中重命名数组键

时间:2021-01-12 10:46:04

In an array such as the one below, how could I rename "fee_id" to "id"?

在如下所示的数组中,如何将“衰弱”重命名为“id”?

Array
(
    [0] => Array
        (
            [fee_id] => 15
            [fee_amount] => 308.5
            [year] => 2009                
        )

    [1] => Array
        (
            [fee_id] => 14
            [fee_amount] => 308.5
            [year] => 2009

        )

)

9 个解决方案

#1


37  

foreach ( $array as $k=>$v )
{
  $array[$k] ['id'] = $array[$k] ['fee_id'];
  unset($array[$k]['fee_id']);
}

This should work

这应该工作

#2


14  

You could use array_map() to do it.

您可以使用array_map()进行此操作。

$myarray = array_map(function($tag) {
    return array(
        'id' => $tag['fee_id'],
        'fee_amount' => $tag['fee_amount'],
        'year' => $tag['year']
    ); }, $myarray);

#3


1  

$arrayNum = count($theArray);

for( $i = 0 ; $i < $arrayNum ; $i++ )
{
    $fee_id_value = $theArray[$i]['fee_id'];
    unset($theArray[$i]['fee_id']);
    $theArray[$i]['id'] = $fee_id_value;
}

This should work.

这应该工作。

#4


0  

Copy the current 'fee_id' value to a new key named 'id' and unset the previous key?

将当前的“衰弱”值复制到一个名为“id”的新键,并取消前一个键的设置?

foreach ($array as $arr)
{
  $arr['id'] = $arr['fee_id'];
  unset($arr['fee_id']);
}

There is no function builtin doing such thin afaik.

没有函数构建可以做这么薄的工作。

#5


0  

This is the working solution, i tested it.

这是可行的解决方案,我测试过了。

foreach ($myArray as &$arr) {
    $arr['id'] = $arr['fee_id'];
    unset($arr['fee_id']);
}

#6


0  

The snippet below will rename an associative array key while preserving order (sometimes... we must). You can substitute the new key's $value if you need to wholly replace an item.

下面的代码片段将重命名一个关联数组键,同时保持顺序(有时……)我们必须)。如果需要完全替换项,可以替换新键的$值。

$old_key = "key_to_replace";
$new_key = "my_new_key";

$intermediate_array = array();
while (list($key, $value) = each($original_array)) {
  if ($key == $old_key) {
    $intermediate_array[$new_key] = $value;
  }
  else {
    $intermediate_array[$key] = $value;
  }
}
$original_array = $intermediate_array;

#7


0  

Converted 0->feild0, 1->field1,2->field2....

转换成0 - > feild0,1 - > field1,2 - > field2 ....

This is just one example in which i get comma separated value in string and convert it into multidimensional array and then using foreach loop i changed key value of array

这只是一个例子,我在字符串中得到逗号分隔值并将其转换为多维数组,然后使用foreach循环修改数组的键值

<?php

    $str = "abc,def,ghi,jkl,mno,pqr,stu 
    abc,def,ghi,jkl,mno,pqr,stu
    abc,def,ghi,jkl,mno,pqr,stu
    abc,def,ghi,jkl,mno,pqr,stu;

    echo '<pre>';
    $arr1 = explode("\n", $str); // this will create multidimensional array from upper string
    //print_r($arr1);
    foreach ($arr1 as $key => $value) {
        $arr2[] = explode(",", $value);
        foreach ($arr2 as $key1 => $value1) {
            $i =0;
            foreach ($value1 as $key2 => $value2) { 
                $key3 = 'field'.$i;
                $i++;
                $value1[$key3] = $value2;
                unset($value1[$key2]);           
            }
        }
        $arr3[] = $value1;
    }
    print_r($arr3);


   ?>

#8


0  

I wrote a function to do it using objects or arrays (single or multidimensional) see at https://github.com/joaorito/php_RenameKeys.

我编写了一个函数来使用对象或数组(单个或多维的)来完成它,请参见https://github.com/joaorito/php_RenameKeys。

Bellow is a simple example, you can use a json feature combine with replace to do it.

Bellow是一个简单的例子,您可以使用json特性和replace一起使用。

// Your original array (single or multi)

$original = array(
'DataHora'  => date('YmdHis'),
'Produto'   => 'Produto 1',
'Preco'     => 10.00,
'Quant'     => 2);

// Your map of key to change

$map = array(
'DataHora'  => 'Date',
'Produto'   => 'Product',
'Preco'     => 'Price',
'Quant'     => 'Amount');

$temp_array = json_encode($original);

foreach ($map AS $k=>$v) {
    $temp_array = str_ireplace('"'.$k.'":','"'.$v.'":', $temp);
    }

$new_array = json_decode($temp, $array);

#9


-3  

I have been trying to solve this issue for a couple hours using recursive functions, but finally I realized that we don't need recursion at all. Below is my approach.

我已经尝试用递归函数来解决这个问题几个小时了,但最后我意识到我们根本不需要递归。下面是我的方法。

$search = array('key1','key2','key3');
$replace = array('newkey1','newkey2','newkey3');

$resArray = str_replace($search,$replace,json_encode($array));
$res = json_decode($resArray);

On this way we can avoid loop and recursion.

这样我们就可以避免循环和递归。

Hope It helps.

希望它可以帮助。

#1


37  

foreach ( $array as $k=>$v )
{
  $array[$k] ['id'] = $array[$k] ['fee_id'];
  unset($array[$k]['fee_id']);
}

This should work

这应该工作

#2


14  

You could use array_map() to do it.

您可以使用array_map()进行此操作。

$myarray = array_map(function($tag) {
    return array(
        'id' => $tag['fee_id'],
        'fee_amount' => $tag['fee_amount'],
        'year' => $tag['year']
    ); }, $myarray);

#3


1  

$arrayNum = count($theArray);

for( $i = 0 ; $i < $arrayNum ; $i++ )
{
    $fee_id_value = $theArray[$i]['fee_id'];
    unset($theArray[$i]['fee_id']);
    $theArray[$i]['id'] = $fee_id_value;
}

This should work.

这应该工作。

#4


0  

Copy the current 'fee_id' value to a new key named 'id' and unset the previous key?

将当前的“衰弱”值复制到一个名为“id”的新键,并取消前一个键的设置?

foreach ($array as $arr)
{
  $arr['id'] = $arr['fee_id'];
  unset($arr['fee_id']);
}

There is no function builtin doing such thin afaik.

没有函数构建可以做这么薄的工作。

#5


0  

This is the working solution, i tested it.

这是可行的解决方案,我测试过了。

foreach ($myArray as &$arr) {
    $arr['id'] = $arr['fee_id'];
    unset($arr['fee_id']);
}

#6


0  

The snippet below will rename an associative array key while preserving order (sometimes... we must). You can substitute the new key's $value if you need to wholly replace an item.

下面的代码片段将重命名一个关联数组键,同时保持顺序(有时……)我们必须)。如果需要完全替换项,可以替换新键的$值。

$old_key = "key_to_replace";
$new_key = "my_new_key";

$intermediate_array = array();
while (list($key, $value) = each($original_array)) {
  if ($key == $old_key) {
    $intermediate_array[$new_key] = $value;
  }
  else {
    $intermediate_array[$key] = $value;
  }
}
$original_array = $intermediate_array;

#7


0  

Converted 0->feild0, 1->field1,2->field2....

转换成0 - > feild0,1 - > field1,2 - > field2 ....

This is just one example in which i get comma separated value in string and convert it into multidimensional array and then using foreach loop i changed key value of array

这只是一个例子,我在字符串中得到逗号分隔值并将其转换为多维数组,然后使用foreach循环修改数组的键值

<?php

    $str = "abc,def,ghi,jkl,mno,pqr,stu 
    abc,def,ghi,jkl,mno,pqr,stu
    abc,def,ghi,jkl,mno,pqr,stu
    abc,def,ghi,jkl,mno,pqr,stu;

    echo '<pre>';
    $arr1 = explode("\n", $str); // this will create multidimensional array from upper string
    //print_r($arr1);
    foreach ($arr1 as $key => $value) {
        $arr2[] = explode(",", $value);
        foreach ($arr2 as $key1 => $value1) {
            $i =0;
            foreach ($value1 as $key2 => $value2) { 
                $key3 = 'field'.$i;
                $i++;
                $value1[$key3] = $value2;
                unset($value1[$key2]);           
            }
        }
        $arr3[] = $value1;
    }
    print_r($arr3);


   ?>

#8


0  

I wrote a function to do it using objects or arrays (single or multidimensional) see at https://github.com/joaorito/php_RenameKeys.

我编写了一个函数来使用对象或数组(单个或多维的)来完成它,请参见https://github.com/joaorito/php_RenameKeys。

Bellow is a simple example, you can use a json feature combine with replace to do it.

Bellow是一个简单的例子,您可以使用json特性和replace一起使用。

// Your original array (single or multi)

$original = array(
'DataHora'  => date('YmdHis'),
'Produto'   => 'Produto 1',
'Preco'     => 10.00,
'Quant'     => 2);

// Your map of key to change

$map = array(
'DataHora'  => 'Date',
'Produto'   => 'Product',
'Preco'     => 'Price',
'Quant'     => 'Amount');

$temp_array = json_encode($original);

foreach ($map AS $k=>$v) {
    $temp_array = str_ireplace('"'.$k.'":','"'.$v.'":', $temp);
    }

$new_array = json_decode($temp, $array);

#9


-3  

I have been trying to solve this issue for a couple hours using recursive functions, but finally I realized that we don't need recursion at all. Below is my approach.

我已经尝试用递归函数来解决这个问题几个小时了,但最后我意识到我们根本不需要递归。下面是我的方法。

$search = array('key1','key2','key3');
$replace = array('newkey1','newkey2','newkey3');

$resArray = str_replace($search,$replace,json_encode($array));
$res = json_decode($resArray);

On this way we can avoid loop and recursion.

这样我们就可以避免循环和递归。

Hope It helps.

希望它可以帮助。