8 lines
No EOL
170 B
PHP
8 lines
No EOL
170 B
PHP
<?php
|
|
|
|
spl_autoload_register(function ($className) {
|
|
|
|
$filePath = str_replace('\\', DIRECTORY_SEPARATOR, $className);
|
|
require_once($filePath . '.class.php');
|
|
|
|
}); |