檢查數組中的多個值
PHP 中的 in_array() 函數旨在確定數組中是否存在單一值。為了滿足同時檢查多個值的需求,這裡有兩種方法:
檢查所有值是否都存在
驗證數組的所有元素是否都存在對於另一個數組,可以使用array_intersect() 函數執行交集運算。此函數產生一個數組,其中包含所提供數組之間的共享元素。透過將產生的交集計數與原始目標數組的計數進行比較,您可以確定是否所有目標值都存在。如果計數相等,則表示所有目標值都包含在 haystack 陣列中。
<code class="php">$haystack = array(...); $target = array('foo', 'bar'); if (count(array_intersect($haystack, $target)) == count($target)) { // All elements of $target are present in $haystack }</code>
檢查是否存在至少一個值
確定如果一個數組中的至少一個值存在於另一個數組中,則可以使用類似的方法。透過檢查數組交集的計數並確保其大於零,您可以確認至少存在一個公共元素。
<code class="php">if (count(array_intersect($haystack, $target)) > 0) { // At least one element of $target is present in $haystack }</code>
以上是如何檢查 PHP 數組中的多個值?的詳細內容。更多資訊請關注PHP中文網其他相關文章!