Hacker News new | ask | show | jobs
by bnr 5095 days ago
PHP registers classes (and functions) at parse time, not at execution time.

i.e. this will print "bar":

    <?php
    echo foo();
    function foo() { return "bar"; }