PHP 8.5.0 Alpha 4 available for testing

Voting

: min(nine, four)?
(Example: nine)

The Note You're Voting On

info at arisendrake dot de
6 years ago
If you are unable to upgrade to PHP 7.3 (not released at the time of writing), you can use this simple polyfill:

<?php
if (!function_exists('is_countable')) {
function
is_countable($var) {
return (
is_array($var) || $var instanceof Countable);
}
}
?>

<< Back to user notes page

To Top