Why does function_exists("empty")return false?
if (function_exists("empty")) {
echo "Not working";
}
Documentation states the following for function_exists:
Checks the list of defined functions, both built-in (internal) and user-defined, for function_name.
As far as I know empty is a defined and built-in function.