1 Star 0 Fork 1

吴烨欢/普蜂莲花

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
start.php 1.02 KB
一键复制 编辑 原始数据 按行查看 历史
吴烨欢 提交于 2020-12-22 14:25 . 修改
<?php
/**
* run with command
* php start.php start
*/
ini_set('display_errors', 'on');
use Workerman\Worker;
require_once __DIR__ . '/vendor/Workerman/Autoloader.php';
if(strpos(strtolower(PHP_OS), 'win') === 0)
{
exit("start.php not support windows, please use start_for_win.bat\n");
}
// 检查扩展
if(!extension_loaded('pcntl'))
{
exit("Please install pcntl extension. See http://doc3.workerman.net/appendices/install-extension.html\n");
}
if(!extension_loaded('posix'))
{
exit("Please install posix extension. See http://doc3.workerman.net/appendices/install-extension.html\n");
}
// 标记是全局启动
define('GLOBAL_START', 1);
define('IA_LIB', __DIR__."/run/Libs");
define('IA_ROOT', __DIR__."/run/Applications");
define('IA_ROOT_WEB', __DIR__."/web/");
// 加载所有Applications/*/start.php,以便启动所有服务
foreach(glob(__DIR__.'/run/Applications/start*.php') as $start_file)
{
// var_dump($start_file);
require_once $start_file;
}
// 运行所有服务
Worker::runAll();
?>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wuyehuan/lotus-flower.git
git@gitee.com:wuyehuan/lotus-flower.git
wuyehuan
lotus-flower
普蜂莲花
master

搜索帮助