This question on \'How to tell if a PHP array is empty\' had me thinking of this question
Is there a reason that count should be used instead of e
count
e
I generally use empty. Im not sure why people would use count really - If the array is large then count takes longer/has more overhead. If you simply need to know whether or not the array is empty then use empty.
empty