


Analysis of Controller usage of MVC framework in Zend Framework tutorial, zendmvc_PHP tutorial
Jul 12, 2016 am 08:57 AMAnalysis of the Controller usage of the MVC framework in the Zend Framework tutorial, zendmvc
This article describes the Controller usage of the MVC framework in the Zend Framework tutorial. Share it with everyone for your reference, the details are as follows:
Here is a brief introduction to the basic use of Controller in the MVC model.
Basic usage examples:
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
<?php class IndexController extends Zend_Controller_Action { public function init() { /* Initialize action controller here */ } public function indexAction() { // action body } }
Rules:
1. Usually Controller is stored in the /application/controllers directory of the application.
The path can be customized via:
Zend_Controller_Front::run('/path/to/app/controllers');
Or customize the path via:
// 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');
By default, it can be stored in the default directory.
2. The file name and class name are the same
3. The class name ends with Controller and inherits Zend_Controller_Action
4. Capitalize the first letter of the class name and follow the camel case style. ProfitNewsListControlle
4. The file name ends with Controller.php
5. The initialization work of Controller can be completed in the init method
public function init() { }
Readers who are interested in more zend-related content can check out the special topics of this site: "Zend FrameWork Framework Introductory Tutorial", "php Excellent Development Framework Summary", "Yii Framework Introduction and Summary of Common Techniques", "ThinkPHP Introductory Tutorial" , "php object-oriented programming introductory tutorial", "php mysql database operation introductory tutorial" and "php common database operation skills summary"
I hope this article will be helpful to everyone in PHP programming.
Articles you may be interested in:
- Detailed explanation of Autoloading usage in Zend Framework tutorial
- Resource Autoloading usage example in Zend Framework tutorial
- Zend Framework tutorial Detailed explanation of routing function Zend_Controller_Router
- Zend Framework tutorial: Detailed explanation of Zend_Controller_Plugin plug-in usage
- Zend Framework tutorial: Encapsulation of response object, detailed explanation of Zend_Controller_Response instance
- Zend Framework tutorial: Encapsulation of request object, Zend_Controller_Request Detailed explanation of examples
- Detailed explanation of the base class Zend_Controller_Action of action in Zend Framework tutorial
- Detailed explanation of usage of Zend Framework tutorial’s distributor Zend_Controller_Dispatcher
- Zend Framework tutorial detailed explanation of usage of front-end controller Zend_Controller_Front
- Detailed explanation of usage of view component Zend_View in Zend Framework tutorial
- Detailed explanation of usage of Loader and PluginLoader in Zend Framework tutorial

Hot Article

Hot tools Tags

Hot Article

Hot Article Tags

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Microsoft NET Framework Installation Issues Error Code 0x800c0006 Fix

How to solve the problem that SpringBoot cannot scan the Controller

How to identify Windows upgrade issues using SetupDiag on Windows 11/10
![SCNotification has stopped working [5 steps to fix it]](https://img.php.cn/upload/article/000/887/227/168433050522031.png?x-oss-process=image/resize,m_fill,h_207,w_330)
SCNotification has stopped working [5 steps to fix it]

Microsoft .NET Framework 4.5.2, 4.6, and 4.6.1 will end support in April 2022

PHP MVC Architecture: Building Web Applications for the Future

How to add URL prefix to SpringBoot multiple controllers

KB5012643 for Windows 11 breaks .NET Framework 3.5 apps
