Menu
Home
People
Places
Arts
History
Plants & Animals
Science
Life & Culture
Technology
Reference.org
Autoload
open-in-new
PHP
spl_autoload_register(function ($class) { $file = 'src/' . str_replace('\\', '/', $relative_class) . '.php'; if (file_exists($file)) { require $file; } });
External links
PSR-4
Improved Autoloading Standard
Autoloading Classes
in PHP
spl_autoload_register
in PHP