update page now

Voting

: seven plus one?
(Example: nine)

The Note You're Voting On

info at arisendrake dot de
7 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