/ Published in: PHP
Expand |
Embed | Plain Text
spl_autoload_register('autoloadByUnderscore'); function autoloadByUnderscore($class) { $path = "$pwd/../lib/$filename"; require_once $path; } } // or rediculously simple: function autoloadByUnderscore($c) { }
You need to login to post a comment.
