當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP debug_print_backtrace()用法及代碼示例



用法

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 - Function debug_print_backtrace()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。