is_countable
PHP 7 >= 7.3.0, PHP 8
is_countable - Verify that the contents of a variable is a countable value
Manual
is_countable(
mixed$value ): bool
Verify that the contents of a variable is an array or an object implementing Countable
Parameters
- value
-
The value to check
Return Values
Returns true if value is countable, false otherwise.
Changelog
Version | Description |
7.3.0 | is_countable has been added. |