2013年6月30日
摘要: 【Exception】 Exception类是所有异常类的基类。 1 //Exception类摘要 2 Exception{ 3 //属性 4 protected string $message; //异常的消息内容 5 protected int $code; //异常代码 6 protected string $file; //抛出异常的文件名 7 protected int $line; //抛出异常在文件中的行号 8 9 //方法10 public __construct([string $messag... 阅读全文
posted @ 2013-06-30 12:36 柳風 阅读(457) 评论(0) 推荐(0)