码迷,mamicode.com
首页 > Web开发 > 详细

PHP 使用try catch,捕获异常

时间:2017-08-10 01:22:24      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:exce   header   net   信息   span   utf-8   ext   bsp   get   

<?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();
    }
?>

PHP 使用try catch,捕获异常

标签:exce   header   net   信息   span   utf-8   ext   bsp   get   

原文地址:http://www.cnblogs.com/shaoguan/p/7336956.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!