Home  >  Article  >  php教程  >  Zend Framework Distributor Usage Example

Zend Framework Distributor Usage Example

高洛峰
高洛峰Original
2017-01-06 09:49:361178browse

The example in this article describes the usage of Zend Framework distributor. Share it with everyone for your reference, as follows:

Distribution is to obtain the request object, extract the module name, controller name, action name and optional parameters, and then instantiate the controller and call the entire action process.

If the module, controller or action is not found, the default value will be used.

The Zend_Controller_Dispatcher_Standard class specifies that the default value of each controller and action is index, and the default value of the module is default.

This class allows developers to change the default value settings through the setDEfaultController() method, setDefaultAction() method and setDefaultModule() method.

_forward()

Function: Call this method in any action and pass in the action, controller, module and optional parameters to enter a new action.

Case:

<?php
public function fooAction(){  //定义动作
  //转到当前控制器与模块中的其他动作中
  $this->_forward(&#39;bar&#39;,null,null,array(&#39;baz&#39;=>&#39;bogus&#39;));//第一个参数,表动作;第二个参数,表控制器;第三个参数表示模块
}
public function barAction(){  //定义动作
  //转到当前模块的其他控制器的动作中,FooController::bazAction()
  $this->_forward(&#39;baz&#39;,&#39;foo&#39;,null,array(&#39;baz&#39;=>&#39;bogus&#39;));
}
public function bazAction(){
  //转到其他控制器、其他模块中的动作,Foo_BarController::bazAction()
  $this->_forward(&#39;baz&#39;,&#39;bar&#39;,&#39;foo&#39;,array(&#39;baz&#39;=>&#39;bogus&#39;));
}

I hope this article will be helpful to everyone’s PHP programming based on the Zend Framework framework.

For more articles related to Zend Framework distributor usage examples, please pay attention to the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn