PHP debug_print_backtrace()函数

PHP debug_print_backtrace()函数

语法

void debug_print_backtrace ( void );

定义和用法

此函数打印出PHP的回溯。它打印出函数调用,包含/需要的文件和eval()的内容。

参数

Sr.No Parameter & Description
1 void NA.

返回值

没有返回值。

示例

下面是使用该函数的示例:

<?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]

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程