PHP 8.5.0 Alpha 1 available for testing

Voting

: five plus one?
(Example: nine)

The Note You're Voting On

php at fluidthoughts dot com
17 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