php統計數組中重複的值,可以使用php自帶函數array_count_values
來說明(推薦學習: PHP程式從入門到精通)
array array_count_values ( array $input )array_count_values()
傳回數組,該數組用input 數組中的值作為鍵名,該值在input 數組中出現的次數作為值。
array_count_values() 範例
<?php $array = array(1, "hello", 1, "world", "hello"); print_r(array_count_values ($array)); ?>
以上程式會輸出:
Array ( [1] => 2 [hello] => 2 [world] => 1 )
以上是php如何統計數組中重複的值的詳細內容。更多資訊請關注PHP中文網其他相關文章!