search
Homephp教程PHP源码php数组去重
php数组去重Jun 01, 2016 pm 02:33 PM
Array deduplication

php代码

<?php
function assoc_unique($arr, $key) { 
	$tmp_arr = array(); 
	foreach($arr as $k => $v) { 
		if(in_array($v[$key], $tmp_arr)) { 
			unset($arr[$k]); 
		} else { 
			$tmp_arr[] = $v[$key]; 
		} 
	} 
	sort($arr); 
	return $arr; 
} 

$aa = array( 
	array(&#39;id&#39; => 123, &#39;name&#39; => &#39;张三&#39;), 
	array(&#39;id&#39; => 123, &#39;name&#39; => &#39;李四&#39;), 
	array(&#39;id&#39; => 124, &#39;name&#39; => &#39;王五&#39;), 
	array(&#39;id&#39; => 125, &#39;name&#39; => &#39;赵六&#39;), 
	array(&#39;id&#39; => 126, &#39;name&#39; => &#39;赵六&#39;) 
); 
$key = &#39;name&#39;; 
assoc_unique(&$aa, $key); 
print_r($aa);
?>
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
PHP 数组去重时指定去除重复元素的依据PHP 数组去重时指定去除重复元素的依据Apr 28, 2024 pm 10:48 PM

PHP的array_unique()函数用于去除数组中重复元素,其缺省使用严格相等(===)。我们可以通过自定比较函数来指定去重依据:创建自定比较函数,指定去重的标准(例如根据元素长度);将自定比较函数作为第三个参数传递给array_unique()函数,即可根据指定的标准去除重复元素。

es5和es6怎么实现数组去重es5和es6怎么实现数组去重Jan 16, 2023 pm 05:09 PM

es5中可以利用for语句和indexOf()函数来实现数组去重,语法“for(i=0;i<数组长度;i++){a=newArr.indexOf(arr[i]);if(a==-1){...}}”。在es6中可以利用扩展运算符、Array.from()和Set来去重;需要先将数组转为Set对象来去重,然后利用扩展运算符或Array.from()函数来将Set对象转回数组即可。

PHP 数组去重后如何保持键值对应?PHP 数组去重后如何保持键值对应?Apr 27, 2024 pm 12:33 PM

PHP数组去重后保持键值对应的方法有:使用array_unique()函数去除重复值,再用array_flip()函数交换键值对。将原始数组与去重后的数组合并,使用数组合并的方法来保留键值对应。

PHP 数组去重时处理空值和 null 值的技巧PHP 数组去重时处理空值和 null 值的技巧Apr 26, 2024 pm 05:03 PM

PHP数组去重时处理空值和null值的技巧:使用array_unique搭配array_filter过滤空值和null值。使用array_unique并定义自定义比较函数,将空值和null值视为相等。使用array_reduce遍历数组,并在不包含空值或null值的情况下添加项。

PHP中如何排除重复数组PHP中如何排除重复数组Jun 05, 2023 pm 02:53 PM

PHP中排除重复数组的方法:1、创建一个PHP示例文件;2、定义待去重的数组为“$oldArr”,去重后的新数组为“$newArr”;3、使用“array_unique()”函数去除数组中重复元素,并返回去重后的数组,其代码为“$newArr = array_unique($oldArr);”即可排除;4、还可以通过for循环的方式进行去重。

javascript数组去重怎么做javascript数组去重怎么做Sep 07, 2021 pm 05:59 PM

方法:1、利用“[...new Set(arr)]”语句;2、利用“Array.from(new Set(arr))”语句;3、利用filter和indexOf函数;4、利用双重for循环,检查值是否重复,如果有重复就使用push()删除。

php如何去掉数组内重复元素php如何去掉数组内重复元素May 25, 2023 pm 05:19 PM

php去掉数组内重复元素的方法:1、使用“array_unique()”函数,去除数组中的重复数据;2、通过foreach循环遍历,通过定义一个新的数组存储不重复的数据的方法实现去重;3、使用array_flip()和array_keys()函数,可得到去重后的数组;4、使用array_filter()函数,通过使用该函数结合匿名函数的方式对原始数组进行去重。

PHP 数组去重并保留重复元素的次数PHP 数组去重并保留重复元素的次数Apr 27, 2024 am 11:06 AM

PHP中可通过array_count_values()函数去重数组并保留重复元素的次数。该函数返回一个关联数组,键为原始数组中的元素,值为这些元素出现的次数。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment