[Solved] PHP – how many times [duplicate]


Wouldn’t it be great if there were a function like array_count_values?

</sarcasm>


Some example code of usage:

$arr = array(...);
$valCounts = array_count_values( $arr );
echo $valCounts['hey'];

I highly recommend browsing php.net and, in-particular, learning the array functions.

0

solved PHP – how many times [duplicate]