Question:What is the difference between sizeof($array) and count($array)?
Answer sizeof($array) - This function is an alias of count() count($array) - If you just pass a simple variable instead of an array it will return 1.
+ Report
What is the difference between sizeof($array) and count($array)?