array_intersect
接受两个数组并查找匹配===
的值并返回结果。但是,数组中的值必须逐个字符匹配。是否有用于比较两个数组并查找包含相似字符串而不是相等相似字符串的值的函数或方法。类似于 stripos 但带有array_intersect
.
$array1 = array("howdyhorse", "monkeyjoe", "bill", "donkeymonkey", "carrothorse")
$array2 = array("bill", "horse", "monkeybunk", "apple", "panda")
function($array1, $array2);
Returns an array = array("bill", "horse", "monkeyjoe")
顺序没有特别的问题。