3 Star 5 Fork 1

小菜鸟先飞 / JIThink

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
cli.php 708 Bytes
一键复制 编辑 原始数据 按行查看 历史
小菜鸟先飞 提交于 2017-08-08 13:58 . update
<?php
if (version_compare(PHP_VERSION, '5.3.0', '<')) {
die('require PHP > 5.3.0 !');
}
/**
* 系统调试设置
* 项目正式部署后请设置为false
*/
define('APP_DEBUG', true);
define('MODE_NAME', 'cli');
define('APP_STATUS','cli');
$currDir = dirname(__FILE__);
/**
* 应用目录设置
* 安全期间,建议安装调试完成后移动到非WEB目录
*/
define('APP_PATH', $currDir.'/App/');
/**
* 缓存目录设置
* 此目录必须可写,建议移动到非WEB目录
*/
define('RUNTIME_PATH', $currDir.'/Runtime/');
/**
* 引入核心入口
* ThinkPHP亦可移动到WEB以外的目录
*/
require $currDir.'/vendor/autoload.php';
require $currDir.'/ThinkPHP/ThinkPHP.php';
PHP
1
https://gitee.com/sunbirder/JIThink.git
git@gitee.com:sunbirder/JIThink.git
sunbirder
JIThink
JIThink
master

搜索帮助