🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
# 命令行 ThinkPHP5.1支持`Console`应用,通过命令行的方式执行一些URL访问不方便或者安全性较高的操作。 我们可以在cmd命令行下面,切换到应用根目录(注意不是web根目录),然后执行`php think`,会出现下面的提示信息: ``` >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`命令的执行格式一般为: > ### >php think 指令 参数 下面介绍下系统自带的几个命令,包括: 指令描述build自动生成目录和文件help帮助list指令列表clear清除缓存指令make:controller创建控制器文件make:model创建模型文件optimize:autoload生成类库映射文件optimize:config生成配置缓存文件optimize:schema生成数据表字段缓存文件更多的指令可以自己扩展。