Home > Backend Development > PHP Problem > php compare two arrays and remove duplicate values

php compare two arrays and remove duplicate values

王林
Release: 2023-03-10 21:00:01
Original
2234 people have browsed it

The way PHP compares two arrays and deletes duplicate values ​​is to use the array_diff function and take the two arrays that need to be compared as parameters, such as [array_diff(array1,array2,array3);].

php compare two arrays and remove duplicate values

The operating environment of this article: windows10 system, php 7.3, thinkpad t480 computer.

If we want to compare two arrays and delete duplicate values ​​in the two arrays, the easiest way is to use the array_diff function.

There may be many friends who are not familiar with the array_diff function. Let’s briefly introduce this function.

array_diff() function is used to compare the values ​​of two (or more) arrays and return the difference.

This function compares the values ​​​​of two (or more) arrays (key=>value in value), and returns a difference array, which includes all the arrays being compared (array1 ), but not in any other parameter array (array2 or array3, etc.).

Grammar:

array_diff(array1,array2,array3...);
Copy after login

Code example:

<!DOCTYPE html>
<html>
<body>

<?php
$a1=array("a"=>"red","b"=>"green","c"=>"blue","d"=>"yellow");
$a2=array("e"=>"red","f"=>"black","g"=>"purple");
$a3=array("a"=>"red","b"=>"black","h"=>"yellow");

$result=array_diff($a1,$a2,$a3);
print_r($result);
?>

</body>
</html>
Copy after login

Running results:

Array ( [b] => green [c] => blue )
Copy after login

Related video sharing: php video tutorial

The above is the detailed content of php compare two arrays and remove duplicate values. For more information, please follow other related articles on the PHP Chinese website!

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