How to check if all values in array are identical?

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

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

6条回答
  •  灰色年华
    2021-01-05 10:24

    $results = array_unique($myArray);
    if(count($results) == 1){
       // $myArray is all duplicates
    }
    

提交回复
热议问题