1. 首页
  2. 数据库
  3. 其它
  4. php 异常处理实现代码

php 异常处理实现代码

上传者: 2020-12-23 01:01:07上传 PDF文件 44.75KB 热度 11次
复制代码 代码如下:<?php $path = “D:\\in.txt”; try //检测异常 { file_open($path); } catch(Exception $e) //捕获异常 { echo $e->getMessage(); } function file_open($path) { if(!file_exists($path)) //如果文件无法找到,抛出异常对象 { throw new Exception(“文件无法找到”, 1); } if(!fopen($path, “r”)) //如果文件无法打开,抛出异常对象 { throw new Exc
用户评论