What is the difference between count and sizeof?

I would like to count the number of values ​​that I have in some kind of array.

What is the difference between countand sizeof?

$recips = array();
echo count($recips);
echo sizeof($recips);
+4
source share
1 answer

These functions are aliases, as mentioned β†’ http://php.net/manual/en/function.sizeof.php

+4
source

All Articles