PHP - why doesn't count() work like strlen() on a string?

Viewed 9830

A string is an array of characters, correct? If so, then why does count() not produce the same result as strlen() on a string?

7 Answers
Related