-1

我有这段代码:


     try 
    {
        foreach($obj_c->getGalleries($db_conn1) as $gallery)
                {
            $gallery->Save($db_conn1);
        }
        $k = 0;
        $testing_the_exception = 15/$k; 
                //settin status to 1...
        $obj_c->set_exec_status(3, 1, $db_conn1);
    }
    catch (Exception $e) 
    {
        //settin status to 3...
    $obj_c->set_exec_status(3, 3, $db_conn1);
    echo 'Caught exception: ',  $e->getMessage(), "\n";
    }   
    unset($obj_c);

事实是它应该进入 catch 部分,因为除以零异常,但它只是弹出警告并继续将状态设置为 1。这是预期的行为吗?提前非常感谢。

4

2 回答 2

3

这更像是一个批发解决方案。设置错误报告以抛出异常:

<?php
function exception_error_handler($errno, $errstr, $errfile, $errline ) {
    throw new ErrorException($errstr, $errno, 0, $errfile, $errline);
}
set_error_handler("exception_error_handler");

/* Trigger exception */
strpos();
?>  

set_error_handler这是来自php.net 文档的示例

于 2013-05-13T20:03:13.267 回答
1

那是因为除以 0 是 php 中的警告,而不是异常。捕捉它的最好方法是测试它并抛出你自己的异常。

if($k == 0)
    throw new Exception("Division by zero");
$testing_the_exception = 15/$k; 
于 2013-05-13T19:56:34.027 回答