Learning PHP-错误和异常处理_PHP_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > PHP > Learning PHP-错误和异常处理

Learning PHP-错误和异常处理

 2013/8/29 2:15:11  2057  程序员俱乐部  我要评论(0)
  • 摘要:Try...Catch<?phptry{}catch(Exception$e){}?>Exception类PHP为异常处理提供了内之类——Exception。除了构造函数外,该类还提供了如下所示的内置方法:getCode()返回传递给构造函数的代码。getMessage()返回传递给构造函数的消息getFile()返回产生异常的代码文件的完整路径getLine()返回代码文件中产生异常的代码行号getTrace(
  • 标签:PHP 错误 异常处理 异常
Try...Catch
class="php" name="code">
<?php
try{
}
catch(Exception $e){
}
?>

Exception类
PHP为异常处理提供了内之类——Exception。
除了构造函数外,该类还提供了如下所示的内置方法:
  • getCode()  返回传递给构造函数的代码。
  • getMessage()  返回传递给构造函数的消息
  • getFile()  返回产生异常的代码文件的完整路径
  • getLine()  返回代码文件中产生异常的代码行号
  • getTrace() 返回一个包含了产生异常的代码回退路径的数组
  • getTraceAsString() 返回与getTrace()方向相同的信息,该信息将被格式化成一个字符串。
  • _ToString() 允许简单地显示一个Exception对象,并且给出以上所有方法可以提供的信息。

用户自定义异常
<?php
class Exception{

function __construct(string $message = null, int $code = 0){
     if(func_num_args()){
          $this->message = $message;
     }
     $this->code = $code;
     $this->file = __FILE__;
     $this->line = __LINE__;
     $this->trace = debug_backtrace();
     $this->string = StringFormat($this);
     }

protected $message;
protected $code = 0;
protected $file;
protected $line;

private $trace;
private $string;

final function getMessage(){
     return $this->message;
}

final function getCode(){
     return $this->code;
}

final function getTrace(){
     return $this->trace;
}

final function getTraceAsString(){
     return self::TraceFormat($this);
}

function _toString(){
     return $this->string;
}

static private function StringFormat(Exception $exception){
}

static private function TraceFormat(Exception $exception){
}
}
?>


参考资料:
PHP&MySQL.Web

发表评论
用户名: 匿名