用法
void debug_print_backtrace ( void );
定義和用法
此函數打印 PHP 回溯。它打印函數調用、包含/需要的文件和 eval()ed 內容。
參數
Sr.No | 參數及說明 |
---|---|
1 |
void 不適用。 |
返回值
不返回任何值。
示例
下麵是這個函數的用法~
<?php
function one() {
two();
}
function two() {
three();
}
function three(){
debug_print_backtrace();
}
one();
?>
這將產生以下結果 -
#0 three() called at [/var/www/tutorialspoint/php/test.php:7] #1 two() called at [/var/www/tutorialspoint/php/test.php:3] #2 one() called at [/var/www/tutorialspoint/php/test.php:13]
相關用法
- PHP debug_print_backtrace()用法及代碼示例
- PHP debug_backtrace()用法及代碼示例
- PHP debug_zval_dump()用法及代碼示例
- PHP decbin()用法及代碼示例
- PHP decoct()用法及代碼示例
- PHP dechex()用法及代碼示例
- PHP deg2rad()用法及代碼示例
- PHP decoct( )用法及代碼示例
- PHP define()用法及代碼示例
- PHP decbin( )用法及代碼示例
- PHP defined()用法及代碼示例
- PHP dechex( )用法及代碼示例
- PHP disk_total_space()用法及代碼示例
- PHP disk_total_space( )用法及代碼示例
- PHP dir()用法及代碼示例
- PHP date_default_timezone_set()用法及代碼示例
- PHP date_create_immutable()用法及代碼示例
- PHP date_get_last_errors()用法及代碼示例
注:本文由純淨天空篩選整理自 PHP - Function debug_print_backtrace()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。