How to use array_intersect function in php

青灯夜游
Release: 2023-02-22 18:00:01
Original
3231 people have browsed it

Usage of array_intersect function in php: [array_intersect(array1)]. The array_intersect function is used to compare the key values of two or more arrays and return the intersection array.

How to use array_intersect function in php

array_intersect() function is a built-in function provided by PHP. The syntax is array_intersect(array1,array2,array3...), which is used to calculate two or The intersection of multiple arrays. This function is used to compare the key values of two or more arrays and return the intersection.

(Recommended tutorial:php video tutorial)

How to use the php array_intersect() function?

php The array_intersect() function is used to compare the key values of two (or more) arrays and return the intersection.

Basic syntax:

array_intersect(array1,array2,array3...)
Copy after login

Parameters:

●array1: required, cannot be omitted. The first array to compare with other arrays.

●array2: required and cannot be omitted. The array to compare to the first array.

●array3,...: Optional and can be omitted. Additional array to compare with the first array.

Return value:Returns an intersection array that includes all the arrays being compared (array1), and also in any other parameter arrays (array2 or array3, etc.) key value.

Let’s take a look at how to use the php array_intersect() function through an example.

"降龙十八掌","黄蓉"=>"打狗棍法","西门"=>"吹雪剑法","过儿"=>"黯然销魂掌"); $a2=array("黄蓉"=>"打狗棍法","小龙女"=>"玉女心经","金轮法王"=>"龙象般若功"); $a3=array("裘千仞"=>"九阴白骨爪","天山童姥"=>"天山传音","黄蓉"=>"打狗棍法"); $result=array_intersect($a1,$a2,$a3); //返回三个数组中都存在的元素 print_r($result); ?>
Copy after login

Output:

Array ( [黄蓉] => 打狗棍法
Copy after login

The above is the detailed content of How to use array_intersect function in php. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
php
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
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!