PHP 数组函数 array_intersect() PHP 数组函数 array_flip() PHP 数组函数 array_intersect_assoc() PHP 数组函数 array_intersect() <?php $input1 = array("a" => "BMW", "Maruthi", "blue"); $input2 = array("b" => "BMW", "yellow", "Maruthi"); $result = array_intersect($input1, $input2); print_r($result); ?> PHP 数组函数 array_flip() PHP 数组函数 array_intersect_assoc()