Files
TVboxEidtor/index.php
T
779776787 efca70ecb2 push
首次推送
2025-08-12 14:19:34 +08:00

13 lines
321 B
PHP

<?php
/**
* 应用唯一的入口文件
*/
define('ROOT_PATH', dirname(__FILE__));
define('IN_APP', true);
define('APP_PATH','App');
//print_r($_SERVER);die;
require_once 'Core.php';
$conf = require_once APP_PATH.'/config.php';
$conf['APP_PATH'] = APP_PATH; // 必须设置应用路径
Core::getInstance($conf)->run();