也许我错过了一些非常明显的东西,但这段代码不起作用:
<pre>
<?php print_r(($progress)); ?>
<?php print_r(array_count_values ($progress)); ?>
</pre>
输出是这样的:
Array
(
[0] => 1
[1] => 1
[2] => 1
[3] => 1
[4] => 1
[5] => 1
[6] => 1
)
Array
(
)
这里有什么问题?为什么 array_count_values 返回一个空数组?