dongzhaobai5982 2015-11-21 08:14
浏览 26
已采纳

从数组中删除双重条目

I have the following array in php:

[0] => Array(
  (
    [post_id] => 492,
    [user_id] => 1
  )
[1] => Array(
  (
    [post_id] => 501,
    [user_id] => 1
  )
[2] => Array(
  (
    [post_id] => 568,
    [user_id] => 13
  )
[3] => Array(
  (
    [post_id] => 897,
    [user_id] => 13
  )

What I want to do, is to delete the ones where the user_id already exists. So the result should look like this:

[0] => Array(
  (
    [post_id] => 492,
    [user_id] => 1
  )
[1] => Array(
  (
    [post_id] => 568,
    [user_id] => 13
  )

I need an array, in which every user_id only exists one time.

array_unique() doesn't work for this example. Any ideas?

Thanks!

  • 写回答

2条回答 默认 最新

  • dtqysxw4659 2015-11-21 08:20
    关注

    You can loop through and find unique values as you go:

    $exists = array();
    foreach($items as $key => $item) {
        if(!in_array($item['user_id'], $exists)) {
            $exists[] = $item['user_id'];
        } else {
            unset($items[$key]);
        }
    }
    

    This will unset any arrays that already exist in the $exists array.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统
  • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
  • ¥15 下图接收小电路,谁知道原理
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度