PHP 例外テスト、元の例 2

WBOY
WBOYオリジナル
2016-06-23 13:38:05937ブラウズ

<?php/* * 测试代码 * 主要测试异常的示例 *//*//创建可抛出一个异常的函数,示例一function checkNum($number) {    if ($number > 1) {        throw new Exception("Value must be 1 or below");    }    return true;}//在 "try" 代码块中触发异常try {    checkNum(2);    //If the exception is thrown, this text will not be shown    echo 'If you see this, the number is 1 or below';}//捕获异常catch (Exception $e) {    echo 'Message: ' . $e->getMessage();} *  *///---------------------//创建可抛出一个异常的函数,示例二function checkNum($number) {    try{        if ($number > 1) {            throw new Exception("Value must be 1 or below");        }    }catch (Exception $e) {        echo 'Message: ' . $e->getMessage();    }    return true;}try{    checkNum(2);    echo ' If you see this, the number is 1 or below';}catch (Exception $e) {    echo 'Error 2 : ' . $e->getMessage();}echo "<br />It is work good.";

例 1 はオンラインで利用できます

例 2 は、自分のアイデアをテストするためのものです。


声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。