コード例 #1
0
ファイル: exception_010.php プロジェクト: badlamer/hhvm
<?php

$x = new Exception();
$x->gettraceasstring(1);
$x->gettraceasstring();
$x->__tostring(1);
$x->gettrace(1);
$x->getline(1);
$x->getfile(1);
$x->getmessage(1);
$x->getcode(1);
コード例 #2
0
ファイル: ptcms.php プロジェクト: oohook/PTFrameWork
 public static function exception(Exception $e)
 {
     halt($e->getmessage(), $e->getFile(), $e->getLine());
 }