How to check if all values in array are identical?

后端 未结 6 2076
北恋
北恋 2021-01-05 09:42

In PHP how can I quickly tell if all values in array are identical?

6条回答
  •  萌比男神i
    2021-01-05 10:34

    You can use the test:

    count(array_unique($arr)) == 1;
    

    Alternatively you can use the test:

    $arr === array_fill(0,count($arr),$arr[0]);
    

提交回复
热议问题