加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.php 455 Bytes
一键复制 编辑 原始数据 按行查看 历史
horseluke 提交于 2015-09-25 17:32 . 初始化
<?php
use SCH60\Kernel\App;
require __DIR__. '/protected/ThirdParty/SCH60Framework/Kernel.php';
//======================程序运行区================
define("D_DEBUG", 1);
define("D_ENV", 'Dev');
define("D_APP_DIR", __DIR__. '/protected/App');
define('D_ENTRY_FILE', __FILE__);
define('D_CONTROLLER_NAME', 'ControllerIntro');
$app = new App();
$app->addLoadClassPath('ThirdPartyLoadByPsr4', __DIR__. '/protected/ThirdPartyLoadByPsr4');
$app->run();
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化