本文主要是介绍easyswoole 自定义命令,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
看了下官网的介绍,感觉和laravel 自定义命令差不多。
按照官方文档的例子代码如下:
namespace App\Command;use EasySwoole\EasySwoole\Command\CommandInterface;
use EasySwoole\EasySwoole\Command\Utility;class Show implements CommandInterface{public function commandName(): string{return "show";}public function exec(array $args): ?string{if(empty($args)){echo "参数为空!".PHP_EOL;}else{var_dump($args);}return null;}public function help(array $args): ?string{$logo = Utility::easySwooleLog();return $logo."this is test";}
}
官方说 新增/bootstrap.php
文件添加注册文件,框架会自动注入,
但是 bootstrap是3.2.5新增的事件,它允许用户在框架初始化之前执行自定义事件
我看了我的版本 刚好是 3.2.1 并没有这个功能,要么更新框架代码,要么去找源码,手动注入。
在入口文件看到单例模式的命令类
$ret = CommandRunner::getInstance()->run($args);
在CommandRunner 类中注入自己写的测试类:
执行命令:php easyswoole show key 1111
这篇关于easyswoole 自定义命令的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!