关于比较具有相同值的 2 个数组或检查数组中的值是否存在有很多问题,但我在任何地方都找不到这个问题:
如何检查某个变量/值是否在一个数组中存在两次或更多次?
例如:
$array_to_check = array( "this", "this" , "yes" , "no" , "maybe" , "yes" , "yes" );
$this_value = "this";
// how to check if $this_value or 'this' value exist more than twice in $array_to_check array:
// if it exist more than twice, echo yes it exist more than once!!
也很高兴看看是否有一个可以调用的函数,我可以在其中插入要检查的变量和要检查的数组作为参数,如果变量值在数组中存在两次以上,则返回 true。
例如:
$function check_if_more_than_two($the_variable_to_check, $array_to_check)
太感谢了。任何帮助将非常感激 :)