Home > Backend Development > PHP Tutorial > php排除有某同一特征的数据

php排除有某同一特征的数据

WBOY
Release: 2016-06-06 20:09:49
Original
880 people have browsed it

想用foreach来获取gid, 得到以下的数据:gid 相同,
有什么办法排除同样的gid,一样的gid,只留一组.

<code>[
  {
    "id": "151",
    "uid": "101497",
    "gid": "399",
    "create_time": "1462445116",
    "msg": null,
    "number": "148",
    "order_id": "2016050518451705537",
    "type": "0",
    "prepay_id": null,
    "code": null,
    "recharge": "0",
    "wid": "0",
    "end_time": "1462445416",
    "status": "1"
  },
  {
    "id": "132",
    "uid": "101497",
    "gid": "399",
    "create_time": "1462420981",
    "msg": null,
    "number": "97",
    "order_id": "2016050512030120339",
    "type": "0",
    "prepay_id": null,
    "code": null,
    "recharge": "0",
    "wid": "0",
    "end_time": "1462421281",
    "status": "1"
  },
  {
    "id": "133",
    "uid": "101497",
    "gid": "399",
    "create_time": "1462426436",
    "msg": null,
    "number": "97",
    "order_id": "2016050513335645342",
    "type": "0",
    "prepay_id": null,
    "code": null,
    "recharge": "0",
    "wid": "0",
    "end_time": "1462426736",
    "status": "1"
  }
]</code>
Copy after login
Copy after login

回复内容:

想用foreach来获取gid, 得到以下的数据:gid 相同,
有什么办法排除同样的gid,一样的gid,只留一组.

<code>[
  {
    "id": "151",
    "uid": "101497",
    "gid": "399",
    "create_time": "1462445116",
    "msg": null,
    "number": "148",
    "order_id": "2016050518451705537",
    "type": "0",
    "prepay_id": null,
    "code": null,
    "recharge": "0",
    "wid": "0",
    "end_time": "1462445416",
    "status": "1"
  },
  {
    "id": "132",
    "uid": "101497",
    "gid": "399",
    "create_time": "1462420981",
    "msg": null,
    "number": "97",
    "order_id": "2016050512030120339",
    "type": "0",
    "prepay_id": null,
    "code": null,
    "recharge": "0",
    "wid": "0",
    "end_time": "1462421281",
    "status": "1"
  },
  {
    "id": "133",
    "uid": "101497",
    "gid": "399",
    "create_time": "1462426436",
    "msg": null,
    "number": "97",
    "order_id": "2016050513335645342",
    "type": "0",
    "prepay_id": null,
    "code": null,
    "recharge": "0",
    "wid": "0",
    "end_time": "1462426736",
    "status": "1"
  }
]</code>
Copy after login
Copy after login

<code class="php">$str='[
  {
    "id": "151",
    "uid": "101497",
    "gid": "399",
    "create_time": "1462445116",
    "msg": null,
    "number": "148",
    "order_id": "2016050518451705537",
    "type": "0",
    "prepay_id": null,
    "code": null,
    "recharge": "0",
    "wid": "0",
    "end_time": "1462445416",
    "status": "1"
  },
  {
    "id": "132",
    "uid": "101497",
    "gid": "399",
    "create_time": "1462420981",
    "msg": null,
    "number": "97",
    "order_id": "2016050512030120339",
    "type": "0",
    "prepay_id": null,
    "code": null,
    "recharge": "0",
    "wid": "0",
    "end_time": "1462421281",
    "status": "1"
  },
  {
    "id": "133",
    "uid": "101497",
    "gid": "398",
    "create_time": "1462426436",
    "msg": null,
    "number": "97",
    "order_id": "2016050513335645342",
    "type": "0",
    "prepay_id": null,
    "code": null,
    "recharge": "0",
    "wid": "0",
    "end_time": "1462426736",
    "status": "1"
  }
]';

$arr = json_decode($str,1);
$res = [];
foreach($arr as $v){
      if (!isset($res[$v['gid']])){
           $res[$v['gid']] = $v;
      }
}
echo '<pre class="brush:php;toolbar:false">';print_r(array_values($res));
Copy after login

自己寫個函數去除重複的數據在遍歷啊

Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template