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

PHP two-dimensional array deduplication_PHP tutorial

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

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;
        }
Copy after login

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);
                        }
                    }
                }
            }
Copy after login

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