コード例 #1
0
<?php

use core\FrontController;
/**
 * index.php
 */
define('ROOT', dirname(__FILE__));
require_once ROOT . '/core/FrontController.php';
FrontController::run();
コード例 #2
0
ファイル: index.php プロジェクト: GerashenkoVladimir/test
<?php

/*
 * index.php
 **/
define('ROOT', dirname(__FILE__));
function __autoload($className)
{
    require_once ROOT . "\\{$className}.php";
}
\core\FrontController::run();