检查数组中的多个值
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中文网其他相关文章!