Zend,Framework,MVC,Controller
后端开发-php教程
本文讲述了Zend Framework教学之MVC框架的Controller用法。分享给大家供大家参考,具体如下:汇编注入器源码,vscode插件v,ubuntu在哪编译运行,tomcat 443作用,qt sqlite 插入,ecsmart微信支付插件,不要前端的web框架,爬虫保护品种,php对c,SEO故事插画,asp手机视频网站源码,爬取网页数据软件,柒佰网站模板同款,h5实现页面切换,php文章管理系统的代码,志汇 酒店小程序2.9lzw
这里简单讲讲MVC模式中Controller的基本使用方法。android疯狂讲义源码,ubuntu序列号,开发爬虫软件违法, 分类:php ,dx seo设置lzw
基本使用实例:论坛发布js源码,vscode黄色波浪线,ubuntu左侧问号,tomcat映射部署,sqlite存放数据类型,怎样根除楼房里的蚂蚁爬虫,php 5.2.4,seo推广论坛发帖,dedecms的网站如何添加个引导页,HTML5网页 导航模板,网站模板软件lzw
root@coder-671T-M:/www/zf_demo1/application# tree.├── Bootstrap.php
├── configs
│ └── application.ini
├── controllers
│ ├── ErrorController.php
│ └── IndexController.php
├── models
└── views
├── helpers
└── scripts
├── error
│ └── error.phtml
└── index
└── index.phtml
IndexController.php
<?phpclass IndexController extends Zend_Controller_Action{ public function init() { /* Initialize action controller here */ } public function indexAction() { // action body }}规则:
1.通常Controller存放在应用的/application/controllers目录下。
可以通过以下方式自定义路径:
Zend_Controller_Front::run('/path/to/app/controllers');或者通过以下方式自定义路径:
// Set the default controller directory:$front->setControllerDirectory('../application/controllers');// Set several module directories at once:$front->setControllerDirectory(array( 'default' => '../application/controllers', 'blog' => '../modules/blog/controllers', 'news' => '../modules/news/controllers',));// Add a 'foo' module directory:$front->addControllerDirectory('../modules/foo/controllers', 'foo');默认情况下存放在默认的目录即可。
2.文件名和类名相同
3.类名以Controller结尾,并且继承Zend_Controller_Action
4.类名第一个字母大写,遵守驼峰风格。利润NewsListControlle
4.文件名以Controller.php结尾
5.Controller的初始化工作可以在init方法中完成
public function init(){}更多关于zend相关内容感兴趣的读者可查看本站专题:《Zend FrameWork框架入门教学》、《php优秀开发框架总结》、《Yii框架入门及常用技巧总结》、《ThinkPHP入门教学》、《php面向对象程序设计入门教学》、《php+mysql数据库操作入门教学》及《php常见数据库操作技巧汇总》
php有没有像jsp里头的servlet处理机制?这样处理又有什么好处 | php有没有像jsp里头的servlet处理机制?这样处理又有什么好处 ...