ThinkChat🤖让你学习和工作更高效,注册即送10W Token,即刻开启你的AI之旅 广告
ThinkPHP5.1支持`Console`应用,通过命令行的方式执行一些URL访问不方便或者安全性较高的操作。 我们可以在cmd命令行下面,切换到应用根目录(注意不是web根目录),然后执行`php think`,会出现下面的提示信息: ~~~cmd >php think Think Console version 0.1 Usage: command [options] [arguments] Options: -h, --help Display this help message -V, --version Display this console version -q, --quiet Do not output any message --ansi Force ANSI output --no-ansi Disable ANSI output -n, --no-interaction Do not ask any interactive question -v|vv|vvv, --verbose Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug Available commands: build Build Application Dirs clear Clear runtime file help Displays help for a command list Lists commands make make:controller Create a new resource controller class make:model Create a new model class optimize optimize:autoload Optimizes PSR0 and PSR4 packages to be loaded with classmaps too, good for production. optimize:config Build config and common file cache. optimize:route Build route cache. ~~~ `console`命令的执行格式一般为: >[info]### >php think 指令 参数 下面介绍下系统自带的几个命令,包括: |指令 | 描述| |---|---| |build|自动生成目录和文件| |help|帮助| |list|指令列表| |clear|清除缓存指令| |make:controller|创建控制器文件| |make:model|创建模型文件| |make:command|创建指令文件(`V5.1.24+`)| |optimize:autoload|生成类库映射文件| |optimize:config|生成配置缓存文件| |optimize:schema|生成数据表字段缓存文件| |version|查看框架版本(`V5.1.20+`)| |route:list|查看路由定义(`V5.1.24+`)| 更多的指令可以自己扩展。