2 Star 3 Fork 1

qii/triangle

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
console 1.44 KB
一键复制 编辑 原始数据 按行查看 历史
qii 提交于 2016-07-05 15:52 . 初始项目
#!/usr/bin/env php
<?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006-2015 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: yunwuxin <448901948@qq.com>
// +----------------------------------------------------------------------
// 定义项目路径
define('APP_PATH', './application/');
// 定义应用模式为console
define('APP_MODE', 'console');
// 开启调试模式
define('APP_DEBUG', true);
// 关闭应用自动执行
define('APP_AUTO_RUN', false);
// 加载框架引导文件
require './thinkphp/start.php';
// 实例化console
$console = new \think\Console('Think Console', '0.1');
// 读取指令集
if (is_file(APP_PATH . 'command' . EXT)) {
$commands = include APP_PATH . 'command' . EXT;
if (is_array($commands)) {
foreach ($commands as $command) {
if (class_exists($command)) {
// 注册指令
$object = new $command();
if ($object instanceof \think\console\command\Command) {
$console->add($object);
}
}
}
}
}
// 运行
$console->run();
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/qii/triangle.git
git@gitee.com:qii/triangle.git
qii
triangle
triangle
master

搜索帮助