YII 系统命令行生成代码

1.cmd输入(已经加入YII framework到环境变量)

Java代码   收藏代码
  1. yiic shell "E:\Apache2\htdocs\test\index.php"  

 或

Java代码   收藏代码
  1. E:\Apache2\htdocs\test\protected>yiic shell "E:\Apache2\htdocs\test\index.php"  

 SHELL代码或屏幕回显 :

Java代码   收藏代码
  1. Yii Interactive Tool v1.1  
  2. Please type 'help' for help. Type 'exit' to quit.  

你当前显示的是与shell交互的提示符。你可以输入help查看shell为你提供的所有命令列表

Java代码   收藏代码
  1. >> help  
  2. At the prompt, you may enter a PHP statement or one of the following commands:  
  3.  - controller  
  4.  - crud  
  5.  - form  
  6.  - help  
  7.  - model  
  8.  - module  
  9. Type 'help <command-name>' for details about a command.   

 我们看了有几个可选的命令,有一个controller命令看起来象是我们想要的,可能是用来为应用程序创建一个控制器的命令。我们可以在shell提标符下进一步了解controller命令的更多帮助信息。这些信息包括提供的用法说明,参数描述和一些例子。

Java代码   收藏代码
  1. >> help controller  
  2. USAGE  
  3.     controller <controller-ID> [action-ID] ...  
  4.    
  5. DESCRIPTION  
  6.     This command generates a controller and views associated with the specified actions.  
  7.    
  8. PARAMETERS  
  9.   * controller-ID: required, controller ID, e.g., 'post'.  
  10.      If the controller should be located under a subdirectory,   
  11.      please specify the controller ID as 'path/to/ControllerID',  
  12.      e.g., 'admin/user'.  
  13.    
  14.      If the controller belongs to a module, please specify   
  15.      the controller ID as 'ModuleID/ControllerID' or   
  16.      'ModuleID/path/to/Controller' (assuming the controller is under a subdirectory of that module).  
  17.    
  18.   * action-ID: optional, action ID. You may supply one or several action IDs.   
  19.      A default 'index' action will always be generated.  
  20.    
  21. EXAMPLES  
  22.   * Generates the 'post' controller:  
  23.             controller post  
  24.    
  25.   * Generates the 'post' controller with additional actions 'contact' and 'about':  
  26.             controller post contact about   
  27.    
  28.   * Generates the 'post' controller which should be located under  
  29.     the 'admin' subdirectory of the base controller path:  
  30.             controller admin/post  
  31.    
  32.   * Generates the 'post' controller which should belong to the 'admin' module:  
  33.             controller admin/post  

 阅读帮助,很明显看出该命令会生成控制器和操作方法及视图文件。由于我们将要做的应用程序主要是显示一条消息,让我们调用controller message 和一个要显示的操作方法:

Java代码   收藏代码
  1. >> controller message helloWorld  
  2. generate MessageController.php  
  3.                mkdir /Webroot/demo/protected/views/message  
  4.         generate helloworld.php  
  5.         generate index.php  
  6.    
  7. Controller 'message' has been created in the following file:   
  8.         /Webroot/demo/protected/controllers/MessageController.php  
  9.    
  10. You may access it in the browser using the following URL:   
  11.         http://hostname/path/to/index.php?r=message  
  12. >>  

 1.model

Java代码   收藏代码
  1. >> model User tbl_user  
  2.    generate models/User.php  
  3.    generate fixtures/tbl_user.php  
  4.    generate unit/UserTest.php  
  5.   
  6. The following model classes are successfully generated:  
  7.     User  
  8.   
  9. If you have a 'db' database connection, you can test these models now with:  
  10.     $model=User::model()->find();  
  11.     print_r($model);  

 2. CURD

Java代码   收藏代码
  1. >> crud User  
  2.    generate UserController.php  
  3.    generate UserTest.php  
  4.    mkdir D:/testdrive/protected/views/user  
  5.    generate create.php  
  6.    generate update.php  
  7.    generate index.php  
  8.    generate view.php  
  9.    generate admin.php  
  10.    generate _form.php  
  11.    generate _view.php  
  12.   
  13. Crud 'user' has been successfully created. You may access it via:  

 3.module

Java代码   收藏代码
  1. >> module wiki  
  2.       mkdir E:/Apache2/htdocs/webapp/protected/modules  
  3.       mkdir E:/Apache2/htdocs/webapp/protected/modules/wiki  
  4.       mkdir E:/Apache2/htdocs/webapp/protected/modules/wiki/components  
  5.       mkdir E:/Apache2/htdocs/webapp/protected/modules/wiki/controllers  
  6.    generate controllers/DefaultController.php  
  7.       mkdir E:/Apache2/htdocs/webapp/protected/modules/wiki/messages  
  8.       mkdir E:/Apache2/htdocs/webapp/protected/modules/wiki/models  
  9.       mkdir E:/Apache2/htdocs/webapp/protected/modules/wiki/views  
  10.       mkdir E:/Apache2/htdocs/webapp/protected/modules/wiki/views/default  
  11.    generate views/default/index.php  
  12.       mkdir E:/Apache2/htdocs/webapp/protected/modules/wiki/views/layouts  
  13.    generate WikiModule.php  
  14.   
  15. Module 'wiki' has been created under the following folder:  
  16.     E:\Apache2\htdocs\webapp\protected\modules\wiki  
  17.   
  18. You may access it in the browser using the following URL:  
  19.     http://hostname/path/to/index.php?r=wiki  
  20.   
  21. Note, the module needs to be installed first by adding 'wiki'  
  22. to the 'modules' property in the application configuration.  

 4.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值