PHP中定義的一些內建錯誤

來源:互聯網
上載者:User
從PHP7開始,便引入了Error並定義了一些內建錯誤。在這裡總結一些所定義的內建錯誤,也算是有個記錄。
ArithmeticError:Error子類,在執行數學運算髮生錯誤時拋出。PHP7中這些錯誤包括執行負數位移操作、以及調用intp()導致的超出整數範圍之外的值。
AssertionError:Error子類,通過assert發出的宣告失敗時拋出異常。只有ini設定zend.assertions、assert.exception為1並且啟用斷言時,執行assert()時才會在為false時拋出AssertionError異常。
ParseError:Error子類,當解析PHP代碼發生錯誤時會拋出異常。
TypeError:Error子類,當傳遞給函數的參數類型與它對應的聲明參數類型不符;從函數返回的值與聲明的函數傳回型別不匹配以及在strict 模式下將無效數量的參數傳遞給內建的PHP函數時會拋出異常。
pisionByZeroError:ArithmeticError子類,當分母為0或者當0被用作模運算子(%)時,從intp()中拋出異常。在除法(/)操作符中使用0隻會發出警告,如果分子為0結果為NAN,如果分子非0則結果為INF。
ArgumentCountError:PHP7.1起,TypeError子類,當傳遞給使用者定義的函數或方法少於定義的參數數量時拋出異常。
<?phpdeclare(strict_types=1);function foo(string $arg){return 'test' . $arg;;}function testArithmeticError(){try {        $value = 1 << -1;    } catch (ArithmeticError $e) {        echo 'show ArithmeticError:';        echo $e->getMessage();    }}function testAssertionError(){    ini_set('zend.assertions', 1);    ini_set('assert.exception', 1);try {        assert(1>2);    } catch (AssertionError $e) {        echo 'show AssertionError:';        echo $e->getMessage();    }}function testParseError(){    try {        eval('asset(1>2)');    } catch (ParseError $e) {        echo 'show ParseError:';        echo $e->getMessage();    }}function testTypeError(){    try {        foo(123);    } catch (TypeError $e) {        echo 'show TypeError:';        echo $e->getMessage();    } }function testpisionByZeroError(){    try{        1%0;    }catch(pisionByZeroError $e){        echo 'show pisionByZeroError:';        echo $e->getMessage();    }}function testArgumentCountError(){    try{        foo();    }catch(ArgumentCountError $e){        echo 'show ArgumentCountError:';        echo $e->getMessage();    }}//foo("ArithmeticError")();//foo("AssertionError")();//foo("ParseError")();//foo("TypeError")();//foo("pisionByZeroError")();//foo("ArgumentCountError")();?>
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.