poll/public/index.php

25 lines
480 B
PHP
Raw Normal View History

2024-09-30 05:16:24 +02:00
<?php
require_once('../config.php');
// Incluir clases
spl_autoload_register(function ($className) {
$fp = str_replace('\\','/',$className);
$name = basename($fp);
$dir = dirname($fp);
$file = ROOT_CORE.'/'.$dir.'/'.$name.'.php';
if (file_exists($file)) {
require_once $file;
return;
}
});
// Incluir routers
$routers = glob(ROOT_CORE.'/Routers/*.php');
foreach($routers as $file){
require_once($file);
}
\Libs\Router::apply();
?>