Exception::getTrace

(PHP 5, PHP 7)

Exception::getTrace��ȡ�쳣׷����Ϣ

˵��

final public Exception::getTrace ( void ) : array

�����쳣׷����Ϣ��

����

�˺���û�в�����

����ֵ

���ذ����쳣׷����Ϣ�����飨array����

����

Example #1 Exception::getTrace()ʾ��

<?php
function test() {
 throw new 
Exception;
}

try {
 
test();
} catch(
Exception $e) {
 
var_dump($e->getTrace());
}
?>

�������̵���������ڣ�

array(1) {
  [0]=>
  array(4) {
    ["file"]=>
    string(22) "/home/bjori/tmp/ex.php"
    ["line"]=>
    int(7)
    ["function"]=>
    string(4) "test"
    ["args"]=>
    array(0) {
    }
  }
}

�μ�

  • Throwable::getTrace()