Thinkphp6提示: Command “swoole“ is not defined 的解决方法
【摘要】
在Thinkphp6中已经使用如下命令安装好swoole扩展,在php --ri swoole,phpinfo()页面都可以查看到swoole的信息
composer require topthink/think-swoole
但是在运行
php think swoole
提示错误: Command "swoole" is no...
在Thinkphp6中已经使用如下命令安装好swoole扩展,在php --ri swoole,phpinfo()页面都可以查看到swoole的信息
composer require topthink/think-swoole
但是在运行
php think swoole
提示错误: Command "swoole" is not defined
遇到这个问题,如何解决?
1.运行
php think
查看Available commands列表中是否有swoole,如果没有,肯定是无法运行成功的。
-
OssStatic 将静态资源上传到oss上
-
build Build App Dirs
-
clear Clear runtime file
-
curd 一键curd命令服务
-
help Displays help for a command
-
list Lists commands
-
node 系统节点刷新服务
-
run PHP Built-in Server for ThinkPHP
-
version show thinkphp framework version
在项目中找到console.php文件,添加swoole
-
<?php
-
// +----------------------------------------------------------------------
-
// | 控制台配置
-
// +----------------------------------------------------------------------
-
return [
-
// 指令定义
-
'commands' => [
-
'curd' => 'app\common\command\Curd',
-
'node' => 'app\common\command\Node',
-
'OssStatic' => 'app\common\command\OssStatic',
-
'swoole' => 'think\swoole\command\Server',
-
],
-
];
再次运行php think ,就可以看到已经有swoole参数
运行 php think swoole,swoole可以运行
不过呢,报了新的错误,这就是另外新的问题,另寻解决方法。
文章来源: blog.csdn.net,作者:fengda2870,版权归原作者所有,如需转载,请联系作者。
原文链接:blog.csdn.net/fengda2870/article/details/116562260
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)