Simple question: Is the scope of require_once global?
require_once
For example:
It does not. require_once's tracking applies to inside functions. However, the following scripts produce an error:
a.php
b.php
because function f() is not pre-defined to b.php.