首次推送
This commit is contained in:
779776787
2025-08-12 14:19:34 +08:00
parent cff0114a8d
commit efca70ecb2
494 changed files with 340297 additions and 2 deletions
+12
View File
@@ -0,0 +1,12 @@
<?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();