Zend Framework includes a plugin for error handling in its standard distribution.
The ActionStack plugin allows you to manage a stack of requests, and operates as a postDispatch plugin. If a forward (i.e., a call to another action) is already detected in the current request object, it does nothing. However, if not, it checks its stack and pulls the topmost item off it and forwards to the action specified in that request. The stack is processed in LIFO order.
You can retrieve the plugin from the front controller at any time using
Zend_Controller_Front::getPlugin('Zend_Controller_Plugin_ActionStack').
Once you have the plugin object, there are a variety of mechanisms you
can use to manipulate it.
getRegistry()andsetRegistry(). Internally, ActionStack uses aZend_Registryinstance to store the stack. You can substitute a different registry instance or retrieve it with these accessors.getRegistryKey()andsetRegistryKey(). These can be used to indicate which registry key to use when pulling the stack. Default value is 'Zend_Controller_Plugin_ActionStack'.getStack()allows you to retrieve the stack of actions in its entirety.pushStack()andpopStack()allow you to add to and pull from the stack, respectively.pushStack()accepts a request object.
An additional method, forward(), expects a request object,
and sets the state of the current request object in the front controller
to the state of the provided request object, and markes it as
undispatched (forcing another iteration of the dispatch loop).
Zend_Controller_Plugin_ErrorHandler provides a drop-in
plugin for handling exceptions thrown by your application, including
those resulting from missing controllers or actions; it is an
alternative to the methods listed in the MVC Exceptions section.
The primary targets of the plugin are:
Intercept exceptions raised when no route matched
Intercept exceptions raised due to missing controllers or action methods
Intercept exceptions raised within action controllers
In other words, the ErrorHandler plugin is designed to handle HTTP 404-type errors (page missing) and 500-type errors (internal error). It is not intended to catch exceptions raised in other plugins.
By default, Zend_Controller_Plugin_ErrorHandler will
forward to ErrorController::errorAction() in the default
module. You may set alternate values for these by using the various
accessors available to the plugin:
setErrorHandlerModule()sets the controller module to use.setErrorHandlerController()sets the controller to use.setErrorHandlerAction()sets the controller action to use.setErrorHandler()takes an associative array, which may contain any of the keys 'module', 'controller', or 'action', with which it will set the appropriate values.
Additionally, you may pass an optional associative array to the
constructor, which will then proxy to setErrorHandler().
Zend_Controller_Plugin_ErrorHandler registers a
postDispatch() hook and checks for exceptions registered in
the response object. If
any are found, it attempts to forward to the registered error handler
action.
If an exception occurs dispatching the error handler, the plugin will tell the front controller to throw exceptions, and rethrow the last exception registered with the response object.
Since the ErrorHandler plugin captures not only application errors, but also errors in the controller chain arising from missing controller classes and/or action methods, it can be used as a 404 handler. To do so, you will need to have your error controller check the exception type.
Exceptions captured are logged in an object registered in the
request. To retrieve it, use
Zend_Controller_Action::_getParam('error_handler'):
<?php
class ErrorController extends Zend_Controller_Action
{
public function errorAction()
{
$errors = $this->_getParam('error_handler');
}
}
Once you have the error object, you can get the type via $errors->type;. It will be one of the following:
Zend_Controller_Plugin_ErrorHandler::EXCEPTION_NO_ROUTE, indicating no route matched.Zend_Controller_Plugin_ErrorHandler::EXCEPTION_NO_CONTROLLER, indicating the controller was not found.Zend_Controller_Plugin_ErrorHandler::EXCEPTION_NO_ACTION, indicating the requested action was not found.Zend_Controller_Plugin_ErrorHandler::EXCEPTION_OTHER, indicating other exceptions.
You can then test for either of the first three types, and, if so, indicate a 404 page:
<?php
class ErrorController extends Zend_Controller_Action
{
public function errorAction()
{
$errors = $this->_getParam('error_handler');
switch ($errors->type) {
case Zend_Controller_Plugin_ErrorHandler::EXCEPTION_NO_ROUTE:
case Zend_Controller_Plugin_ErrorHandler::EXCEPTION_NO_CONTROLLER:
case Zend_Controller_Plugin_ErrorHandler::EXCEPTION_NO_ACTION:
// 404 error -- controller or action not found
$this->getResponse()
->setRawHeader('HTTP/1.1 404 Not Found');
// ... get some output to display...
break;
default:
// application error; display error page, but don't
// change status code
break;
}
}
}
Finally, you can retrieve the exception that triggered the error handler by grabbing the exception property of the error_handler object:
<?php
public function errorAction()
{
$errors = $this->_getParam('error_handler');
switch ($errors->type) {
case Zend_Controller_Plugin_ErrorHandler::EXCEPTION_NO_ROUTE:
case Zend_Controller_Plugin_ErrorHandler::EXCEPTION_NO_CONTROLLER:
case Zend_Controller_Plugin_ErrorHandler::EXCEPTION_NO_ACTION:
// 404 error -- controller or action not found
$this->getResponse()
->setRawHeader('HTTP/1.1 404 Not Found');
// ... get some output to display...
break;
default:
// application error; display error page, but don't change
// status code
// ...
// Log the exception:
$exception = $errors->exception;
$log = new Zend_Log(
new Zend_Log_Writer_Stream(
'/tmp/applicationException.log'
)
);
$log->debug($exception->getMessage() . "\n" .
$exception->getTraceAsString());
break;
}
}
If you dispatch multiple actions in a request, or if your action
makes multiple calls to render(), it's possible that the
response object already has content stored within it. This can lead
to rendering a mixture of expected content and error content.
If you wish to render errors inline in such pages, no changes will be necessary. If you do not wish to render such content, you should clear the response body prior to rendering any views:
<?php
$this->getResponse()->clearBody();
Example 149. Standard Usage
<?php
$front = Zend_Controller_Front::getInstance();
$front->registerPlugin(new Zend_Controller_Plugin_ErrorHandler());
Example 150. Setting a Different Error Handler
<?php
$front = Zend_Controller_Front::getInstance();
$front->registerPlugin(new Zend_Controller_Plugin_ErrorHandler(array(
'module' => 'mystuff',
'controller' => 'static',
'action' => 'error'
)));
Example 151. Using Accessors
<?php
$plugin = new Zend_Controller_Plugin_ErrorHandler();
$plugin->setErrorHandlerModule('mystuff')
->setErrorHandlerController('static')
->setErrorHandlerAction('error');
$front = Zend_Controller_Front::getInstance();
$front->registerPlugin($plugin);
In order to use the Error Handler plugin, you need an error controller. Below is a simple example.
<?php
class ErrorController extends Zend_Controller_Action
{
public function errorAction()
{
$errors = $this->_getParam('error_handler');
switch ($errors->type) {
case Zend_Controller_Plugin_ErrorHandler::EXCEPTION_NO_ROUTE:
case Zend_Controller_Plugin_ErrorHandler::EXCEPTION_NO_CONTROLLER:
case Zend_Controller_Plugin_ErrorHandler::EXCEPTION_NO_ACTION:
// 404 error -- controller or action not found
$this->getResponse()->setRawHeader('HTTP/1.1 404 Not Found');
$content =<<<EOH
<h1>Error!</h1>
<p>The page you requested was not found.</p>
EOH;
break;
default:
// application error
$content =<<<EOH
<h1>Error!</h1>
<p>An unexpected error occurred. Please try again later.</p>
EOH;
break;
}
// Clear previous content
$this->getResponse()->clearBody();
$this->view->content = $content;
}
}
Zend_Controller_Plugin_PutHandler provides a drop-in
plugin for marshalling PUT request bodies into request parameters, just
like POST request bodies. It will inspect the request and, if
PUT, will use parse_str to parse the raw PUT body
into an array of params which is then set on the request. E.g.,
PUT /notes/5.xml HTTP/1.1 title=Hello&body=World
To receive the 'title' and 'body' params as regular request params, register the plugin:
<?php
$front = Zend_Controller_Front::getInstance();
$front->registerPlugin(new Zend_Controller_Plugin_PutHandler());
Then you can access the PUT body params by name from the request inside
your controller:
<?php
...
public function putAction()
{
$title = $this->getRequest()->getParam('title'); // $title = "Hello"
$body = $this->getRequest()->getParam('body'); // $body = "World"
}
...




