PHP 8.4.24 Released!

Voting

: five minus three?
(Example: nine)

The Note You're Voting On

php at fluidthoughts dot com
18 years ago
function_exists returns false on NULL and empty string:

<?php
        if (function_exists('')) {
                echo "empty string function exists\n";
        }

        if (function_exists(NULL)) {
                echo "NULL function exists\n";
        }
?>

Neither of the echo statements happen when I run this.

<< Back to user notes page

To Top