1
0
Fork 0
forked from are0h/tapes
tapes/brain/Loader.php

11 lines
252 B
PHP
Raw Normal View History

<?php
spl_autoload_register(function ($className) {
$file = dirname(__DIR__) . "\\" . $className . ".php";
$file = str_replace("\\", DIRECTORY_SEPARATOR, $file);
//echo $file;
if (file_exists($file)) {
include $file;
}
});