Open In App

PHP array_intersect() Function

Last Updated : 20 Jun, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

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


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads