如果在Zend Framework 2中发生php错误,则显示自定义错误页面

时间:2014-06-16 21:55:45

标签: zend-framework2

Zend Framework 2中有没有办法处理php错误?具体来说,如果发生php错误或抛出未捕获的异常,我需要调用一些操作。

谢谢,

1 个答案:

答案 0 :(得分:0)

在ZF2视图管理器中,您可以注册默认错误页面。您可以将它们添加到您的应用module.config.php,如下所示:

<?php
//module/Application/config/module.config.php

namespace Application;

return array(
    ...

    'view_manager' => array(
        'not_found_template'       => 'error/404',
        'exception_template'       => 'error/index'
    ),

    ...
)

您可以自行决定这些观看的内容。

详细了解视图管理器here in the Zend Framework 2 documentation