array_intersect() 返回一个数组,该数组包含了所有在 array1 中也同时出来源gaodai#ma#com搞@代~码网现在所有其它参数数组中的值。注意键名保留不变。
array array_intersect ( array array1, array array2 [, array …])
array_intersect() 函数返回两个或多个数组的交集数组。
array_intersect() 返回一个数组,该数组包含了所有在 array1 中也同时出现在所有其它参数数组中的值。注意键名保留不变。
下面就拿手册上的例子给大家演示:
array_intersect() 函数返回两个或多个数组的交集数组。
array_intersect() 返回一个数组,该数组包含了所有在 array1 中也同时出现在所有其它参数数组中的值。注意键名保留不变。
下面就拿手册上的例子给大家演示:
<?php
$array1 = array (“a” => “green”, “red”, “blue”);
$array2 = array (“b” => “green”, “yellow”, “red”);
$result = array_intersect ($array1, $array2);
print_r($result);
?>
输出结果如下:
Array
(
[a] => green
[0] => red
)
以上就是php array_intersect()函数使用代码的详细内容,更多请关注gaodaima搞代码网其它相关文章!