php array_intersect() function example usage

怪我咯
Release: 2023-03-13 18:00:02
Original
925 people have browsed it

array_intersect() Function is used to compare two (or more) arrays key value and return the intersection.

This function compares the key values ​​​​of two (or more) arrays and returns the intersection array, which includes everything in the compared array (array1), as well as in any other parameter array ( key values ​​in array2 or array3 etc.).

Description

array_intersect() function returns the intersection array of two or more arrays.

The result array contains all values ​​that are in the compared array and also appear in all other parameter arrays, and the key names remain unchanged.

Note: Only values ​​are used for comparison.

Syntax

array_intersect(array1,array2,array3...)
Copy after login
ParametersDescription
array1 Required. The first array to compare with other arrays.
array2Required. The array to compare to the first array.
array3 Optional. The array to compare to the first array. There can be multiple.

Example

The code is as follows:

<?php 
$a1=array(0=>"Cat",1=>"Dog",2=>"Horse"); 
$a2=array(3=>"Horse",4=>"Dog",5=>"Fish"); 
print_r(array_intersect($a1,$a2)); 
?>
Copy after login

Output:

Array ( [1] => Dog [2] => Horse )
Copy after login

The above is the detailed content of php array_intersect() function example usage. 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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!