Home  >  Article  >  Backend Development  >  About the usage of Zend Framework action controller

About the usage of Zend Framework action controller

不言
不言Original
2018-06-15 11:29:181242browse

This article mainly introduces the usage of Zend Framework action controller, and analyzes the functions, usage steps, related techniques and precautions of the action controller in the form of examples. Friends in need can refer to the examples of this article

Describes the usage of Zend Framework action controller. Share it with everyone for your reference, as follows:

Introduction to Action Controller

In order to use the Zend_Controller_Action class, you need to subclass it in the actual controller class.

Code:

<?php
class FooController extends Zend_Controller_Action{
  public function barAction(){
    //do something
  }
  public function bazAction(){
    //do something
  }
}

Description: The above FooController class defines two actions, bar and baz.

Object initialization

Initialization A more appropriate way to customize instantiation is to use the init() method. This method is the last call task in __construct().

Code:

<?php
class FooController extends Zend_Controller_Action{
  public function init(){
    $this->db = Zend_Db::factory(&#39;Pdo_Mysql&#39;,array(
      &#39;host&#39;=>&#39;myhost&#39;,
      &#39;username&#39;=>&#39;user&#39;,
      &#39;password&#39;=>&#39;xxxx&#39;,
      &#39;dbname&#39;=>&#39;website&#39;
    ));
  }
}

Description: The above code realizes the connection to the database while initializing the object.

Accessor

Action controllers can include many contents, such as request objects, response objects, call parameters, and request parameters. These contents can be accessed through the corresponding accessor methods.

The request object can be obtained through the getRequest() method. Executing this method will return a Zend_Controller_Request_Abstract instance.

Code:

$module = $this->getRequest()->getModuleName();//获取模块名称
$controller = $this->getRequest()->getControllerName();//获取控制器名称
$action = $this->getRequest()->getActionName();//获取动作名称

The response object can be obtained through the getResponse() method, Executing this method will return a Zend_Controller_Response_Abstract instance.

The request parameters of the request object include any GET or GET or _POST parameters. In order to read these parameters, you can use the _getParam($key) or _getAllParams() method.

View integration method

View initialization

ExecutioninitView()method will initialize the view object .

Parse the view

render()The method is used to parse the view

Code:

<?php
class MyController extends Zend_Controller_Action{
  public function fooAction(){
    //Renders my/foo.phtml
    $this->render();
    //Renders my/bar.phtml
    $this->render(&#39;bar&#39;);
    //Renders baz.phtml
    $this->render(&#39;baz&#39;,null,true);//第三个参数,指定是否使用控制器目录作为子目录,true表示不使用
    //Renders my/login.phtml to the &#39;form&#39; segment of the response object
    $this->render(&#39;login&#39;,&#39;form&#39;);
  }
}

Other methods

_forword(), this method performs another action
_redirect(), this method redirects to another place

The above is the entire content of this article. I hope it will be helpful to everyone's study. For more related content, please pay attention to the PHP Chinese website!

Related recommendations:

Zend Usage analysis of Framework action assistant

#Zend Usage of Application and Bootstrap in Framework

##

The above is the detailed content of About the usage of Zend Framework action controller. For more information, please follow other related articles on 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