TP6中命令行操作
1、启动内置服务器php think run //指定IP和端口 php think run -H tp.com -p 802、查看当前版本
php think version3、快速生成应用
php think build demo4、快速生成控制器
//生成index应用的Blog控制器 php think make:controller index@Blog //如果单应用生成控制器 php think make:controller Blog //生成空控制器 php think make:controller --plain
5、快速生成模型
php think make:model index@blog //如果单应用无需传入应用名 php think make Blog //生成带后缀的类库 php think make:controller index@BlogController php think make:model BlogModel6、快速生成中间件
php think make:middleware Auth //快速生成验证器 php think make:validate index@user
7、清除缓存
//清除应用缓存文件 php think clear //如果不需要保留空目录 php think clear --dir //清除日志目录 php think clear --log