Home  >  Article  >  Backend Development  >  php二维数组去重_PHP教程

php二维数组去重_PHP教程

WBOY
WBOYOriginal
2016-07-12 09:08:17967browse

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;
        }

 

 方法二:借助第三个数组去重
 
$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);
                        }
                    }
                }
            }

 

 

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...
Statement:
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