PHP Capturar erroresenproducción
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP Capturar erroresenproducción相关的知识,希望对你有一定的参考价值。
try
{
// Attempt to execute the response
$request->execute();
}
catch (Exception $e)
{
if ( ! IN_PRODUCTION)
{
// Just re-throw the exception
throw $e;
}
try
{
// Log the error
Kohana::$log->add(Kohana::ERROR, Kohana::exception_text($e));
// Create a 404 response
$request->status = 404;
$request->response = View::factory('template')
->set('title', '404')
->set('content', View::factory('errors/404'));
}
catch (Exception $e)
{
echo "Something terrible happened. We will look into it!";
Kohana::$log->add(Kohana::ERROR, Kohana::exception_text($e));
}
}
以上是关于PHP Capturar erroresenproducción的主要内容,如果未能解决你的问题,请参考以下文章
java capturar elemento valor snnipet
javascript capturar evento cambio en item
linux 安装多个PHP版本(php5.6 php7.1 php7.2 php7.3 php7.4 php8.0)nginx配置php多版本
php [guzzle php] guzzle php #php
php send.php php邮件模板#php
IntelliJ IDEA 11编辑php是,支持php文件名为.php5和.php4,如何设置能让其也支持.php呢?