array_intersect_assoc()函数比较数组值,并返回匹配项。
array_intersect_assoc(arr1, arr2, arr3, arr4, …)
arr1-要比较的数组。需要。
arr2-要比较的数组。需要。
arr3-您可以添加更多数组进行比较。可选的。
arr4-您可以添加更多数组进行比较。可选的。
array_intersect_assoc()函数返回一个数组,该数组包含第一个数组中的所有值,其值存在于所有参数中。
<?php $arr1 = array("p"=>"headphone","q"=>"earpod","r"=>"charger"); $arr2 = array("p"=>"headphone","q"=>"earpod"); $res = array_intersect_assoc($arr1,$arr2); print_r($res); ?>
输出结果
Array ( [p] => headphone [q] => earpod )