2

我正在为我的项目尝试 PHP 异常。但事实证明,异常被成功抛出,但没有被我写的代码成功捕获。

编码:

 try{
    require_once(MASTER_PHP."/master_validation.php");
    require_once(MASTER_PHP."/master_user.php");
    require_once(MASTER_PHP."/master_db.php");  require_once(MASTER_PHP."/master_secure.php");
    require_once(MASTER_PHP."/master_ui.php");
    require_once(MASTER_PHP."/master_mail.php");
    require_once(MASTER_PHP."/master_filehandling.php");
    require_once(MASTER_PHP."/master_archive.php");
    require_once(MASTER_PHP."/master_date.php");
    require_once(MASTER_PHP."/master_social.php");
    require_once(MASTER_PHP."/master_message.php");
    require_once(MASTER_PHP."/master_gallery.php");
    require_once(MASTER_PHP."/master_backup.php");
    require_once(MASTER_PHP."/master_payment.php");
    require_once(MASTER_PHP."/master_sms.php");
    require_once(MASTER_PHP."/master_xml.php");

    $filterobj=new ta_filtervalue();
    $filterobj->filterrequest();

    global $noecho;
    if($noecho!="yes")
    {
        $utilityobj=new ta_utilitymaster();
        $utilityobj->includeextassets();
    }
}
catch (Exception $e)
{
    $custerrcode=$e->getMessage();
$dbobj=new ta_dboperations();
$res=$dbobj->dbquery("SELECT * FROM ".ERROR_CODES." WHERE ".errordb_errcode."='$custerrcode' LIMIT 0,1",DB_ERROR);

$errmsg=$res[0][changesqlquote(errordb_errdesc,"")];
$errpriority=$res[0][changesqlquote(errordb_errpriority,"")];
$errcallback1=$res[0][changesqlquote(errordb_errcallback1,"")];
$errcalltext1=$res[0][changesqlquote(errordb_errcallbacktext1,"")];
$errcallback2=$res[0][changesqlquote(errordb_errcallback2,"")];
$errcalltext2=$res[0][changesqlquote(errordb_errcallbacktext2,"")];
$errtitle=$res[0][changesqlquote(errordb_errtitle,"")];

$errobj=new ta_errorhandle();
$errobj->senderror($errmsg,$custerrcode,$errpriority,$errcallback1,$errcalltext1,$errcallback2,$errcalltext2,$errtitle);
}

如果异常发生在master_user.php(所需文件)中,则必须在需要它的文件中捕获它。但它没有捕捉到异常。

我抛出异常的方式:

throw new Exception('#ta@0000000_0000000');

其中里面的字符串是错误代码。

错误信息:

Fatal error: Uncaught exception 'Exception' with message '#ta@0000000_0000000' in 
C:\xampp\htdocs\techahoy\securedir\phpmaster\master_user.php:19 Stack trace: #0 
C:\xampp\htdocs\techahoy\login\profile.php(4): ta_userinfo->userinit() #1 {main} thrown in
C:\xampp\htdocs\techahoy\securedir\phpmaster\master_user.php on line 19
4

1 回答 1

0

看起来(几乎)和这里一样。

require() 与 include() 相同,但失败时也会产生致命的 E_COMPILE_ERROR 级别错误。换句话说,它将停止脚本

于 2013-04-20T16:37:08.520 回答