search
HomeBackend DevelopmentPHP TutorialZF Framework Controllers Custom Action_PHP Tutorial

The front-end controller is the hard work in MVC construction, because it instantiates objects, triggers events, establishes default behaviors, etc. Its main purpose is to handle all requests entering the application. The design pattern of the front-end controller is applied in different MVC frameworks. The front-end controller (Front Controller) we refer to in Zend Framework actually refers to the Zend_Controller_Front class, because this class implements the front-end controller pattern; please note that What's interesting is that the front-end controller design is a singleton mode (Singleton), which means that it implements the singleton design mode, that is, there can only be one instantiated front-end controller, that is, we cannot directly instantiate the Front Controller. , but take one.

Below we implement a simple controller jump and distribution.

IndexController.php is created in the controllers folder, and the index.phtml file is created in the view folder. Enter http://localhost/NowaMagicFrame1.0/ in the address bar to browse.

<?php
require('CommonController.php');
class IndexController extends Zend_Controller_Action
{	
    function init()
    {
		//parent::init();
        $this->registry = Zend_Registry::getInstance();
        $this->view = $this->registry['view'];
        $this->view->baseUrl = $this->_request->getBaseUrl();
 
    }
 
   public function indexAction() 
    { 
      	//这里给变量赋值,在index.phtml模板里显示
        $this->view->bodyTitle = 'NowaMagic Frame 1.0';
		echo $this->view->render('index.phtml');//显示模版  
    } 
	
	/**
	 * 新闻
	 *
	 */
	public function newsAction(){
		//这里给变量赋值,在news.phtml模板里显示
        $this->view->bodyTitle = 'NowaMagic Frame 新闻';
		echo $this->view->render('news.phtml');//显示模版 
	}
}
?>

Now if I want to access the news page, I can access it through IndexContriller, because it has the newsAction() method to achieve forwarding. The specific access method is http://localhost/NowaMagicFrame1.0/index/news/

But this URL does not look as good as imagined. The ideal URL should look like this: http://localhost/NowaMagicFrame1.0/news/

How to achieve it? We need to create a NewsController.php

<?php
class NewsController extends Zend_Controller_Action
{	
	function init()
    {
        $this->registry = Zend_Registry::getInstance();
        $this->view = $this->registry['view'];
        $this->view->baseUrl = $this->_request->getBaseUrl();
 
    }
	
	/**
	 * 标签首页
	 *
	 */
	function indexAction(){
		echo $this->view->render('news.phtml');
	}
 
}
?>

Just add an indexAction to this file.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/752462.htmlTechArticleThe front-end controller is the hard work in MVC construction, because it needs to instantiate objects, trigger events, and establish default behaviors etc. Its main purpose is to handle all requests coming into the application. Front-end control...
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
在PHP中使用Zend Framework:快速入门指南在PHP中使用Zend Framework:快速入门指南Jun 21, 2023 am 08:58 AM

在PHP中使用ZendFramework:快速入门指南ZendFramework是一个开源的、基于PHP的Web应用程序框架,它是一个功能强大且易于扩展的框架。ZendFramework包含了许多好用的组件,这些组件可以帮助你构建高效的Web应用程序。本文将介绍如何在PHP中使用ZendFramework,帮助你快速入门。安装ZendFramewo

通过Zend Framework中间件实现高效的数据库查询通过Zend Framework中间件实现高效的数据库查询Jul 28, 2023 pm 01:13 PM

通过ZendFramework中间件实现高效的数据库查询引言在开发过程中,数据库查询是不可避免的一部分。一个高效的数据库查询可以大大提高系统的性能和用户体验。ZendFramework是一个使用广泛的PHP框架,拥有强大的数据库操作功能。本文将介绍如何通过ZendFramework中间件来实现高效的数据库查询,并提供相应的代码示例。一、了解ZendF

Zend Framework中间件:为应用程序添加OAuth和OpenID登录支持Zend Framework中间件:为应用程序添加OAuth和OpenID登录支持Jul 28, 2023 pm 01:09 PM

ZendFramework中间件:为应用程序添加OAuth和OpenID登录支持在当今的互联网应用程序中,用户认证是一个关键的功能。为了提供更好的用户体验和安全性,许多应用程序选择集成第三方登录服务,如OAuth和OpenID。在ZendFramework中,我们可以通过中间件来轻松地为应用程序添加OAuth和OpenID登录支持。首先,我们需要安装Ze

Zend Framework中间件:为Web应用程序添加社交登录功能Zend Framework中间件:为Web应用程序添加社交登录功能Jul 28, 2023 pm 07:21 PM

ZendFramework是一个基于PHP的开源框架,提供了许多功能强大的工具和组件,用于构建可扩展的Web应用程序。本文将介绍如何使用ZendFramework的中间件来为Web应用程序添加社交登录功能。中间件是一种在请求进入应用程序之前或之后执行的代码。它允许开发人员在处理请求的过程中进行定制和扩展。ZendFramework提供了一种灵活的方式来

PHP编程中有哪些常见的Zend Framework 2操作?PHP编程中有哪些常见的Zend Framework 2操作?Jun 12, 2023 am 09:01 AM

ZendFramework2是一种流行的PHP编程框架,它提供了丰富的功能和模块,使PHP开发者们可以更加便捷地构建高质量的Web应用程序。本文将介绍一些常见的ZendFramework2操作,助您更好地使用这个框架。MVC模式在ZendFramework2中,Model-View-Controller(MVC)模式是最常见的架构。MVC模式是一

CodeIgniter vs Zend Framework:哪个框架更适合开发ERP系统?CodeIgniter vs Zend Framework:哪个框架更适合开发ERP系统?Jun 19, 2023 am 08:53 AM

当你决定开发ERP系统时,选择一个适合的框架是至关重要的。这里我们将比较CodeIgniter和ZendFramework这两个PHP框架,帮助你找到更适合你的ERP系统开发的框架。CodeIgniter和ZendFramework是颇受欢迎的PHP框架。它们都提供了许多功能,并具有扩展性和可维护性。然而,这两个框架在某些方面存在明显不同,更适合于某些应

Zend Framework中间件:为应用程序添加支付宝和微信支付功能Zend Framework中间件:为应用程序添加支付宝和微信支付功能Jul 28, 2023 pm 08:01 PM

ZendFramework中间件:为应用程序添加支付宝和微信支付功能引言:随着移动支付的普及,支付宝和微信支付已经成为了许多应用程序中必不可少的支付方式。本文将介绍如何使用ZendFramework中间件来为应用程序添加支付宝和微信支付功能。通过本文的学习,您将了解到如何使用中间件来简化支付流程,并且可以运用到您的实际项目当中。一、准备工作在开始之前,您

如何在PHP编程中使用Zend Framework 2?如何在PHP编程中使用Zend Framework 2?Jun 12, 2023 am 08:20 AM

PHP是一种广泛使用的编程语言,而ZendFramework2是一个流行的PHP框架。这个框架为PHP程序员提供了强大的工具来构建高质量、可维护和可扩展的应用程序。本文将介绍如何在PHP编程中使用ZendFramework2。什么是ZendFramework2?ZendFramework2是一个流行的PHP框架,用于构建Web应用程序和服务。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor