Exception::getTraceAsString

(PHP 5, PHP 7)

Exception::getTraceAsString��ȡ�ַ������͵��쳣׷����Ϣ

˵��

final public Exception::getTraceAsString ( void ) : string

���ַ������ͷ����쳣׷����Ϣ��

����

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

����ֵ

���ַ������ͷ����쳣׷����Ϣ��

����

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

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

try {
    
test();
} catch(
Exception $e) {
    echo 
$e->getTraceAsString();
}
?>

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

#0 /home/bjori/tmp/ex.php(7): test()
#1 {main}

�μ�

  • Throwable::getTraceAsString()