douxing9641 2015-02-12 06:24
浏览 47
已采纳

从2D数组中删除重复Id值:PHP

I have an array like

$a = array(
    array('id'=>1, 'value'=>2),
    array('id'=>2, 'value'=>3),
    array('id'=>3, 'value'=>4),
    array('id'=>1, 'value'=>5),
    array('id'=>5, 'value'=>10),
    array('id'=>2, 'value'=>6),

);

from this i want an array which don't have the repeating id wise keys value e.g

$a = array(
    array('id'=>3, 'value'=>4),
    array('id'=>1, 'value'=>5),
    array('id'=>5, 'value'=>10),
    array('id'=>2, 'value'=>6)
);

i tried the following one but unable to get final result.

$i=0;
    foreach ($a as $key=>$value) {
        // $arr[$i] = $value;
        foreach ($a as $key1=>$value1) {
            if(!empty(array_diff($value, $value1))) {
                if( $value['id'] == $value1['id'] ) {
                    $arr[$i]=$value1;
                }
                else {
                    $arr[$i]=$value;
                }
            }
        }
        $i++;
    }
  • 写回答

4条回答 默认 最新

  • dqtl46964 2015-02-12 06:34
    关注

    This should work for you:

    (Here i just simply go trough each innerArray with foreach. Then i get the id from the innerArray and check if it is already in the tmp array and if not i add it to the tmp array. At the end i just simply use array_values(), so that the indexes are clean and starts with 0. The array_reverse() is to get the entire arrray in the right order)

    <?php
    
        $a = array(
                array('id'=>1, 'value'=>2),
                array('id'=>2, 'value'=>3),
                array('id'=>3, 'value'=>4),
                array('id'=>1, 'value'=>5),
                array('id'=>5, 'value'=>10),
                array('id'=>2, 'value'=>6),
        );
    
    
        $tmp = array();
        foreach(array_reverse($a) as $v) {
            $id = $v['id'];
            isset($tmp[$id]) or $tmp[$id] = $v;
        }
        $a = array_reverse(array_values($tmp));
        print_r($a);
    
    ?>
    

    Output:

    Array
    (
        [0] => Array
            (
                [id] => 3
                [value] => 4
            )
    
        [1] => Array
            (
                [id] => 1
                [value] => 5
            )
    
        [2] => Array
            (
                [id] => 5
                [value] => 10
            )
    
        [3] => Array
            (
                [id] => 2
                [value] => 6
            )
    
    )
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)

报告相同问题?

悬赏问题

  • ¥15 目前主流的音乐软件,像网易云音乐,QQ音乐他们的前端和后台部分是用的什么技术实现的?求解!
  • ¥60 pb数据库修改与连接
  • ¥15 spss统计中二分类变量和有序变量的相关性分析可以用kendall相关分析吗?
  • ¥15 拟通过pc下指令到安卓系统,如果追求响应速度,尽可能无延迟,是不是用安卓模拟器会优于实体的安卓手机?如果是,可以快多少毫秒?
  • ¥20 神经网络Sequential name=sequential, built=False
  • ¥16 Qphython 用xlrd读取excel报错
  • ¥15 单片机学习顺序问题!!
  • ¥15 ikuai客户端多拨vpn,重启总是有个别重拨不上
  • ¥20 关于#anlogic#sdram#的问题,如何解决?(关键词-performance)
  • ¥15 相敏解调 matlab