php异常和错误处理

WBOY
Release: 2016-06-13 13:11:17
Original
1057 people have browsed it

php错误和异常处理

?

PHP为异常处理提供了内置类――Exception。其构造函数需要两个参数

除了构造函数外,改类还提供了如下所示的内置方法:

##getCode()――返回传递给构造函数的代码

?

##getMessage()――返回传递给构造函数的消息

?

##getFile()――返回产生异常的代码文件的完整路径

?

##getLine()――返回代码文件中产生异常的代码行号

?

##getTraceAsString()――返回与getTrace()方向相同的信息,该信息将被格式化成一个字符串

?

##_toString()――允许简单的现实一个Exception对象,并且给出以上所有方法可以提供的信息

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template