厚厚的—真是對不起。 :)無論如何,我有2個數組,我想操縱;如果第一個數組中的值存在於第二個數組中,則執行一件事,然後對第二個數組的其餘值執行其他操作。php array - in_array和/或array_intersect
例如
$array1 = array('1','2','3','4'); - the needle
$array2 = array('1','3','5','7'); - the haystack
if(in_array($array1,$array2): echo 'the needle'; else: echo'the haystack LESS the needle '; endif;
但由於某種原因,in_array
不適用於我。請幫助。
你的意思是從針「的任何值」或「所有值」必須出現在草堆? – Matthew 2010-09-04 08:17:42