PHP学习笔记三十五【Try】

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

    
?>

 

posted @ 2014-10-26 22:12  编程猴子  阅读(131)  评论(0编辑  收藏  举报