📌  相关文章
📜  检查数组中的所有值是否相等 php 代码示例

📅  最后修改于: 2022-03-11 14:53:38.853000             🧑  作者: Mango

代码示例6
1. Check if all values are equal without knowing the values from array:
$array = array('true', 'true', 'true');
if((count(array_unique($array)) === 1)) {
  echo "all equal";
} else {
  echo "not equal";
}

2. Check if all values are equal when you know the value from array:
- In this case we know the equal value should be "true" 
$array = array('true', 'true', 'true');
if (count(array_unique($array)) === 1 && end($array) === 'true') {
}