Implementing Autoloading Classes in PHP


Automatically load class files on-demand using an autoloader.

Source Code

spl_autoload_register(function ($class_name) {
    include $class_name . '.php';
});
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments