从关联数组数组中删除所选元素

时间:2014-04-23 05:20:01

标签: php arrays associative-array

我有以下关联数组数组。

$result = array(
    (int) 0 => array(
        'name' => 'Luke',
        'id_number' => '1111',
        'address' => '1544addr',
        'time_here' => '2014-04-12 13:07:08'
    ),
    (int) 1 => array(
        'name' => 'Sam',
        'id_number' => '2222',
        'address' => '1584addr',
        'time_here' => '2014-04-12 14:15:26'

我想从这个数组中删除所选元素,使其看起来像这样;

array(
    (int) 0 => array(
        'name' => 'Luke',
        'id_number' => '1111'
    ),
    (int) 1 => array(
        'name' => 'Sam',
        'id_number' => '2222',

这是我写的代码;

    foreach($result as $value) 
    {            
        unset($value('address')  );
        unset($value('time_here')  );
    } 

当我运行代码时,Apache Web服务器崩溃了。

聪明的成员可以指出我做错了什么吗?非常感谢你。

2 个答案:

答案 0 :(得分:1)

数组表示法错误,请使用此功能;

$finalResult = array();
foreach($result as $value) 
{            
    unset($value['address']  );
    unset($value['time_here']  );
    $finalResult[] = $value;
}

以下是一个有效的演示: Demo

答案 1 :(得分:0)

这是因为您没有正确访问数组。使用方括号而不是圆括号:

foreach($result as $value) 
    {            
        unset($value['address']  );
        unset($value['time_here']  );
    }