count

PHP 4, PHP 5, PHP 7, PHP 8
count - Counts all elements in an array or in a Countable object
Count Online Tool
Manual
Code Examples

Example #1 count example

Result: int(3) int(3)
PHP Version:

Example #2 count non Countable|array example (bad example - don't do this)

Result: int(3) int(0) int(1)
PHP Version:

Example #3 Recursive count example

Result: int(8) int(2)
PHP Version:

Example #4 Countable object

Result: int(2)
PHP Version:


Example #5 of count

PHP Version: