PHP include once.
- by cpburns
Is it more efficient to use PHP's include_once or require_once instead of using c-like include with a header guard?
i.e,
VERSUS
//contents of init.php
if (!defined('MY_INIT_PHP')) {
define('MY_INIT_PHP', true);
...
}
?