PHP学习笔记三十二【Exception】

<?php 
   // $fp=fopen("a.txt","r");
   // echo "ok";
  if(!file_exists("a.txt"))
  {
     exit();//退出
  }
   
   //使用die处理异常
   if(!file_exists("a.txt"))
  {
   die("文件不存在");//打印提示再退出,不会再继续执行
    // exit();
  }else
  {
    
  }
  
  //用法2
  file_exists("a.txt") or die("文件不存在");
  
  
?>

 

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