首頁 > 後端開發 > php教程 > php數組入門教程之關聯數組的交集

php數組入門教程之關聯數組的交集

WBOY
發布: 2016-07-25 08:57:57
原創
962 人瀏覽過
本文介绍下,有关php数组中求关联数组交集的方法,有需要的朋友参考下。

php函数array_intersect_assoc()与array_intersect()基本相同,只不过它在比较中还考虑了数组的键。 因此,只有在第一个数组中出现,且在所有其他输入数组中也出现的键/值对才返回到结果数组中。

形式如下: array array_intersect_assoc(array array1,array array2[,arrayN…])

例子,返回出现在$fruit1数组中,也同时出现在$fruit2与$fruit3中的所有键/值对:

<?php
//求关联数组的交集
$fruit1 = array("red"=>"Apple","yellow"=>"Banana","orange"=>"Orange");  
$fruit2 = array("yellow"=>"Pear","red"=>"Apple","purple"=>"Grape");  
$fruit3 = array("green"=>"Watermelon","orange"=>"Orange","red"=>"Apple");  
$intersection = array_intersect_assoc($fruit1, $fruit2, $fruit3);  
print_r($intersection); //by bbs.it-home.org

// output  
// Array ( [red] => Apple )  
?>
登入後複製


來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板