PHP异常测试,示例二原创

<?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.";

示例一,是网上已有的

示例二,是测试自己的想法的。


郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。