查看已安装的swoole的版本
php --ri swoole
查看phpinfo信息
php -r "phpinfo();" |grep swoole
查看命令列表
php bin/hyperf.php
启动hyperf服务
php bin/hyperf.php start
php bin/hyperf.php server:watch
生成控制器
php bin/hyperf.php gen:Controller UserController
php bin/hyperf.php gen:Controller --namespace='App\Application\Admin\Controller' UserController
生成一个自定义命令
php bin/hyperf.php gen:command FooCommand
生成Model
php bin/hyperf.php gen:model User
生成监听器
php bin/hyperf.php gen:listener RegisterListener
生成表单验证器
php bin/hyperf.php gen:request UserForm
生成配置文件
php bin/hyperf.php vendor:publish hyperf/view
评论 (0)