使用与运行

完成定义命令后,可以执行命令,处理对应业务逻辑

如果不特殊设置,swoft 默认在协程环境运行命令

查看命令

查看当前已经定义的所有命令组

  1. php bin/swoft
  2. # 或者
  3. php bin/swoft -h
  4. php bin/swoft --help

命令运行 - 图1

查看版本

查看当前 swoft 框架版本信息

  1. php bin/swoft -V
  2. # 或者
  3. php bin/swoft --version

命令运行 - 图2

命令帮助信息

  • 命令组帮助信息
  1. php bin/swoft http
  2. # 或者
  3. php bin/swoft http -h

命令运行 - 图3

  • 具体命令帮助信息
  1. php bin/swoft http:start -h
  2. # 或者
  3. php bin/swoft http:start --help

命令运行 - 图4

执行命令

运行命令组下面,某个操作命令。

  1. php bin/swoft http:start