php二维数组去重_PHP教程

WBOY
Release: 2016-07-12 09:08:17
Original
966 people have browsed it

php二维数组去重

方法一:降维去重       
 
        if (!$isPidArrKey) {
            //降维去重
            $temp = array();
            foreach ($tmp as $k => $v) {
                $v      = implode(',', $v);
                $temp[] = $v;
            }
            $temp = array_unique($temp);
            foreach ($temp as $k => $v) {
                $temp[$k] = explode(",", $v);
            }
            $tmp = $temp;
        }
Copy after login

方法二:借助第三个数组去重
$idsTmp = array();
            $com    = new CacheCombusiness();
            foreach ($proInfo as $key => $value) {
                foreach ($comInfo as $k => $v) {
                    if ($value['cid'] == $k) {
                        // $value['cid'] = 24;
                        $comBusInfo = $com->getMore(array($value['cid']));
                        if (!empty($comBusInfo)) {
                            $value['qq'] = $comBusInfo[0]['contactArr']['qq'];
                        }
                        if (in_array($value['pid'], $idsTmp)) {
                            continue;
                        }
                        $idsTmp[] = $value['pid'];
                        if ($isPidArrKey) {
                            $tmp[$key] = array_merge($value, $v);
                        } else {
                            $tmp[] = array_merge($value, $v);
                        }
                    }
                }
            }
Copy after login

 

 

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/1056013.htmlTechArticlephp二维数组去重 方法一:降维去重 if (!$isPidArrKey) { //降维去重 $temp = array(); foreach ($tmp as $k = $v) { $v = implode(,, $v); $temp[] = $v; } $temp = array_u...
Related labels:
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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!