📅  最后修改于: 2022-03-11 14:53:42.797000             🧑  作者: Mango
$colors=array("red","red","red","blue","green");
$colorsCount=array_count_values($colors);
print_r($colorsCount);
#Array
#(
# [red] => 3
# [blue] => 1
# [green] => 1
#)