Answers for "get values from two array that have same index php"

PHP
0

multiple value match in array php

if (in_array('a', $array_under_test) || in_array('b', $array_under_test)) {
  // Success!
}
Posted by: Guest on September-25-2020
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 values from two array that have same index php"

Browse Popular Code Answers by Language