ThinkPHP5.0支持`Console`应用,通过命令行的方式执行一些URL访问不方便或者安全性较高的操作。
我们可以在命令行下面,切换到应用根目录,然后执行`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`命令的执行格式一般为:
>[info]### >php think 指令 参数
下面介绍下系统自带的几个命令,包括:
|指令 | 描述|
|---|---|
|build|自动生成目录和文件|
|help|帮助|
|list|指令列表|
|clear|清除缓存指令|
|make:controller|创建控制器文件|
|make:model|创建模型文件|
|optimize:autoload|生成类库映射文件|
|optimize:config|生成配置缓存文件|
|optimize:route|生成路由缓存文件|
|optimize:schema|生成数据表字段缓存文件|
更多的指令可以自己扩展。