关云Yii在windows下的shell 使用方式
yii的资料一般都是在linux 下的,
windows的话有几个地方要注意下
1、yii会在webapp的protected文件夹下生成一个yiic.bat 所以 不用去framwork 下去运行
2、yiic.bat shell 直接不会进入yiic的shell提示,你需要在后面接上使用的配置文件 比如
D:\xampp\htdocs\QualityMonitor\protected>yiic.bat shell config\main.php
Yii Interactive Tool v1.1 (based on Yii v1.1.10)
Please type 'help' for help. Type 'exit' to quit.
>> help
At the prompt, you may enter a PHP statement or one of the following commands:
- controller
- crud
- form
- help
- model
- module
- rbac
3、yiic.bat shell似乎是预加载放在commands\shell\* 如果执行遇到错误,请更改完毕后,一定要先退出yiic的shell重新执行,可以使用ctrl + c 或输入exit退出
enjoy~