多字段去重php
$insert[] = [
'where' => $sv2['cpy_empcode1'],
'card_id' => $sv2['card_id'],
];
$container = array();
$result = array();
$number = 1;
foreach ($insert as $item) {
$key = $item['where'] . '_' . $item['card_id'];
if (empty($container[$key])) {
$container[$key] = $number;
} else {
$container[$key] += $number;
}
}
foreach ($container as $key => $item) {
list($where, $card_id) = explode('_', $key);
$result[] = array('where' => $where, 'card_id' => $card_id);
}
祝你今天愉快🤗微笑每一天💕💕💕
时间仓促,如有错误欢迎指出,欢迎在评论区讨论,如对您有帮助还请点个推荐、关注支持一下
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须在文章页面给出原文链接,否则保留追究法律责任的权利。
若内容有侵犯您权益的地方,请公告栏处联系本人,本人定积极配合处理或删除。