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

PHP学习笔记三十二【Exception】

时间:2014-10-26 22:54:01      阅读:238      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   使用   sp   文件   div   on   

<?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("文件不存在");
  
  
?>

 

PHP学习笔记三十二【Exception】

标签:style   blog   color   io   使用   sp   文件   div   on   

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

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