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

PHP学习笔记三十五【Try】

时间:2014-10-26 22:44:35      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   sp   div   on   log   cti   

<?php 
 
   
   function AddUser($name)
   {
     if($name=="张三")
     {
       echo "add success";
       return true;
     }else
     {
        throw new Exception("添加失败");
     }
   }
 
   function updateUser($username)
   {
    if($username=="张三")
    {
     return true;
    }else{
     throw new Exception("更新失败!");
    }
   }
   function A(){
    
     try{
     $res1=AddUser("hell");
     $res2=updateUser("world");
    }catch(Exception $ex)
    {
      echo "处理失败!错误信息:".$ex->getMessage();
    
    }
   
   }
 
   A();

    
?>

 

PHP学习笔记三十五【Try】

标签:style   blog   color   io   sp   div   on   log   cti   

原文地址:http://www.cnblogs.com/sumg/p/4052899.html

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