<?php class MyException extends Exception { function getInfo() { return '自定义错误信息'; } } try { throw new MyException('error'); } catch(Exception $e) { echo $e->getInfo(); }
noprom
2014-08-22
1 回答
举报
0/150
提交
取消