怎么添加helper路径
如何添加helper路径
我在入口文件index.php添加了
$view=new Zend_View();
//Zend_Controller_Action_HelperBroker::getStaticHelper('ViewRenderer');
$view->addHelperPath('Myproject/View/Helper','Myproject_View_Helper');
怎么不起作用?
在library/Myproject/View_Helper/下我新建了一个:
require_once 'Zend/View/Helper/Abstract.php';
class Myproject_View_Helper_RenderMenu extends Zend_View_Helper_Abstract
还是提示:
exception 'Zend_Loader_PluginLoader_Exception' with message 'Plugin by name 'RenderMenu' was not found in the registry; used paths: Login_View_Helper_: ../application/login/views\helpers/ Zend_View_Helper_: Zend/View/Helper/' in D:\zendstudioworkspace\zendtest\library\Zend\Loader\PluginLoader.php:412 Stack trace: #0 D:\zendstudioworkspace\zendtest\library\Zend\View\Abstract.php(1182): Zend_Loader_PluginLoader->load('RenderMenu') #1
这个是哪里错了?为什么不会到目录里'Myproject/View/Helper'搜
------解决方案--------------------
最简单的方法,放在/views/helpers/下面,因为这是自动包含的。
或者干脆用Zend_View_Helper_开头,因为这是默认的命名空间。
所以错误的主要原因就是没有指定命名空间。所以如果自定义,需要注册。在配置文件中或者用autoloader完成。
http://blog.csdn.net/mengxiangbaidu/article/details/7479332
http://blog.csdn.net/mengxiangbaidu/article/details/7191723

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

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

Laravel is one of the most popular PHP frameworks currently, and its powerful view generation capabilities are impressive. A view is a page or visual element displayed to the user in a web application, which contains code such as HTML, CSS, and JavaScript. LaravelView allows developers to use a structured template language to build web pages and generate corresponding views through controllers and routing. In this article, we will explore how to generate views using LaravelView. 1. What

How to use ACL (AccessControlList) for permission control in Zend Framework Introduction: In a web application, permission control is a crucial function. It ensures that users can only access the pages and features they are authorized to access and prevents unauthorized access. The Zend framework provides a convenient way to implement permission control, using the ACL (AccessControlList) component. This article will introduce how to use ACL in Zend Framework

PHP implementation framework: ZendFramework introductory tutorial ZendFramework is an open source website framework developed by PHP and is currently maintained by ZendTechnologies. ZendFramework adopts the MVC design pattern and provides a series of reusable code libraries to serve the implementation of Web2.0 applications and Web Serve. ZendFramework is very popular and respected by PHP developers and has a wide range of

CakePHP is a popular PHP framework that provides many practical tools and features to make developers' work more efficient. One of them is the Helper mechanism, which provides useful functions and methods in view files. In this article, we will explore how to create a custom Helper in CakePHP. 1. Create the Helper class. In CakePHP, Helpers are stored in the 'app/View/Helper' directory. Create a new Hel

PHP does not recognize ZendOptimizer, how to solve it? In PHP development, sometimes you may encounter a situation where PHP cannot recognize ZendOptimizer, which will cause some PHP codes to not run properly. In this case, we need to take some measures to solve the problem. Some possible workarounds are described below, along with specific code examples. 1. Confirm whether ZendOptimizer is installed correctly: First, we need to confirm that ZendOptimizer

The Windows 2003 installation package includes Zend, PHP5.2.17, PHPWind8.7 and PHPMyadmin3.5.2. You can download the installation package directly to save time searching for resources. However, since MySQL has exceeded the upload limit, you need to go to the MySQL official website to download. Then unzip and copy to the D drive, as shown below: MySQLinDdisk Install and configure WindowsIIS+FTP Click Start>Control Panel>Add or Remove Programs.AddingordeletingaPG Click Add/Remove Windows Components (A). Addingorde

Laravel is an open source PHP Web framework dedicated to improving the efficiency and quality of Web application development by simplifying common Web development tasks. In Laravel, the Helper function is a very practical tool function that can simplify our development process and improve code readability and maintainability. This article will introduce various Helper functions in Laravel and show how to use these functions to quickly simplify development tasks. Array processing In Laravel, arrays are what we need

With the rapid development of information technology, more and more enterprises are beginning to realize the necessity of information management. ERP (Enterprise Resource Planning) management platform is an important tool for modern enterprise management, which can help enterprises realize resource planning, collaboration, control, optimization and management. Among them, the PHP framework Zend is an excellent development tool that can help developers develop ERP systems quickly and efficiently. This article will introduce how to use Zend to develop an efficient ERP management platform. 1. Determine requirements analysis before starting the development process
