Sunday, February 22, 2026
HomeLanguagesPHP array_intersect() Function

PHP array_intersect() Function

This builtin function of PHP is used to compute the intersection of two or more arrays. The function is used to compare the values of two or more arrays and returns the matches. The function prints only those elements of the first array that are present in all other arrays.

Syntax:

array array_intersect($array1, $array2, $array3, $array4...)

Parameters: The array_intersect() function takes at least two arrays as arguments. It can take any number of arrays greater than or equal to two separated by commas (‘,’).

Return Type: The function returns another array containing the elements of the first array that are present in all other arrays passed as the parameter. If no element matches then, a NULL array is returned.

Note: The keys of elements are preserved. That is, the keys of elements in output array will be same as that of keys of those elements in the first array.

Examples:

Input : $array1 = array(5, 10, 15, 20, 25, 30)
        $array2 = array(20, 10, 15, 55, 110, 30)
        $array3 = array(10, 15, 30, 55, 100, 95)
Output :
        Array
        (
           [1] => 10
           [2] => 15
           [5] => 30
        )

Input : $array1 = array("ram", "laxman", "rishi", "ayush");
        $array2 = array("ayush", "gaurav", "rishi", "rohan");
        $array3 = array("rishi", "gaurav", "ayush", "ravi");
Output :
        Array
        (
           [2] => rishi
           [3] => ayush
        )

Below program illustrates the array_intersect() function in PHP:




<?php
  
// PHP function to illustrate the use of array_intersect()
function Intersect($array1, $array2, $array3)
{
    $result = array_intersect($array1, $array2, $array3);
    return($result);
}
  
$array1 = array(5, 10, 15, 20, 25, 30);
$array2 = array(20, 10, 15, 55, 100, 110, 30);
$array3 = array(10, 15, 30, 55, 100, 95);
print_r(Intersect($array1, $array2, $array3));
  
?>
  


Output:

Array
(
    [1] => 10
    [2] => 15
    [5] => 30
)

Reference: http://php.net/manual/en/function.array-intersect.php

RELATED ARTICLES

2 COMMENTS

Most Popular

Dominic
32506 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6882 POSTS0 COMMENTS
Nicole Veronica
12005 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12099 POSTS0 COMMENTS
Shaida Kate Naidoo
7011 POSTS0 COMMENTS
Ted Musemwa
7255 POSTS0 COMMENTS
Thapelo Manthata
6967 POSTS0 COMMENTS
Umr Jansen
6956 POSTS0 COMMENTS