首页 > 后端开发 > php教程 > PHP异常测试,示例二原创

PHP异常测试,示例二原创

WBOY
发布: 2016-06-23 13:38:05
原创
942 人浏览过

<?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.";
登录后复制

示例一,是网上已有的

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


来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板