PHP 教程

PHP 7 新特性

PHP debug_backtrace() 函数

PHP Error 参考手册 完整的 PHP Error 参考手册

定义和用法

debug_backtrace() 函数生成 backtrace。

该函数显示由 debug_backtrace() 函数代码生成的数据。

返回一个关联数组。下面是可能返回的元素:

名称类型描述
functionstring当前的函数名。
lineinteger当前的行号。
filestring当前的文件名。
classstring当前的类名。
objectobject当前对象。
typestring当前的调用类型,可能的调用:
  • 返回:"->" - 方法调用

  • 返回:"::" - 静态方法调用

  • 返回 nothing - 函数调用

argsarray如果在函数中,列出函数参数。如果在被引用的文件中,列出被引用的文件名。

语法

debug_backtrace()

实例

<?php
 function one($str1, $str2)
 {
 two("Glenn", "Quagmire");
 }
 function two($str1, $str2)
 {
 three("Cleveland", "Brown");
 }
 function three($str1, $str2)
 {
 print_r(debug_backtrace());
 }

 one("Peter", "Griffin");
 ?>

上面代码的输出如下所示:

Array
 (
 [0] => Array
 (
 [file] => C:webfoldertest.php
 [line] => 7
 [function] => three
 [args] => Array
 (
 [0] => Cleveland
 [1] => Brown
 )
 )
 [1] => Array
 (
 [file] => C:webfoldertest.php
 [line] => 3
 [function] => two
 [args] => Array
 (
 [0] => Glenn
 [1] => Quagmire
 )
 )
 [2] => Array
 (
 [file] => C:webfoldertest.php
 [line] => 14
 [function] => one
 [args] => Array
 (
 [0] => Peter
 [1] => Griffin
 )
 )
 )

PHP Error 参考手册 完整的 PHP Error 参考手册

新闻动态 联系方式 广告合作 招聘英才 安科实验室 帮助与反馈 About Us

Copyright © 2013 - 2019 Ancii.com All Rights Reserved京ICP备18063983号-5 京公网安备11010802014868号