企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
``` array\_diff $fruit1 = array("Apple","Banana","Orange"); $fruit2 = array("Pear","Apple","Grape"); $fruit3 = array("Watermelon","Orange","Apple"); $intersection = array\_diff($fruit1, $fruit2, $fruit3); print\_r($intersection); // output // Array ( \[1\] => Banana ) ```