PHP使用trycatch,捕獲異常

速貸100發表於2017-08-09

<?php 
    header(`Content-type:text/html;charset=utf-8`);
    $a 1;
    $b 2;
    try {
        //結果為真,設定異常資訊
        if$a $b )
        {
            throw new Exception(`a要大於b`);
        }
    } catch (Exception $err{
        // 返回異常資訊
        echo $err->getMessage();
    }
?>


相關文章