Answers for "get different values two arrays php"

PHP
3

compare two arrays and return the difference php

array_merge(array_diff($array1,$array2),array_diff($array2,$array1))
Posted by: Guest on March-11-2021
0

get the matched value from 2 array in php

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

$result=array_intersect($a1,$a2,$a3);

// Output
// Array ( [a] => red )
Posted by: Guest on August-18-2021

Code answers related to "get different values two arrays php"

Browse Popular Code Answers by Language