Well I confused by behavior of PHP when parsing a PHP file. I am reading this since long that
The PHP language is interpreted
So I have code
var_dump(function_exists('abc')); exit;
function abc() {
return;
}
var_dump should print false as per my assumption but it print bool(true).
Can somebody please help me to understand this behavior?