Home >Backend Development >PHP Tutorial >PHP two-dimensional array deduplication_PHP tutorial

PHP two-dimensional array deduplication_PHP tutorial

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

php two-dimensional array deduplication

Method 1: Dimensionality reduction and deduplication
        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;
        }

Method 2: Use the third array to remove duplicates
$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 two-dimensional array deduplication method 1: Dimensionality reduction and deduplication if (!$isPidArrKey) { //Dimensionality reduction Deduplication $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