PHP debug_backtrace() Function
Complete PHP Error Reference
Definition and Usage
The debug_backtrace() function generates a backtrace.
This function displays data from the code that led up to the
debug_backtrace() function.
Returns an associative array. The possible returned elements are as follows:
| Name |
Type |
Description |
| function |
string |
The current function name |
| line |
integer |
The current line number |
| file |
string |
The current file name |
| class |
string |
The current class name |
| object |
object |
The current object |
| type |
string |
The current call type. Possible calls:
- Returns: "->" - Method call
- Returns: "::" - Static method call
- Returns nothing - Function call
|
| args |
array |
If inside a function, this lists the functions arguments. If inside
an included file, this lists the included file name |
Syntax
Example
<?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");
?>
|
The output of the code above should be something like this:
Array
(
[0] => Array
(
[file] => C:\webfolder\test.php
[line] => 7
[function] => three
[args] => Array
(
[0] => Cleveland
[1] => Brown
)
)
[1] => Array
(
[file] => C:\webfolder\test.php
[line] => 3
[function] => two
[args] => Array
(
[0] => Glenn
[1] => Quagmire
)
)
[2] => Array
(
[file] => C:\webfolder\test.php
[line] => 14
[function] => one
[args] => Array
(
[0] => Peter
[1] => Griffin
)
)
)
|
Complete PHP Error Reference
 |
 |
 |
 |
|
The Ektron Intranet
lets you do everything you need to do on your corporate intranet and everything you want to do... all with just one application.
What can you do with the Ektron Intranet? |
 |
Navigate through content, documents, assets, colleagues and workgroups quickly and intuitively with enterprise search |
 |
Communicate with friends and colleagues with forums, message boards and corporate blogging using the new Social Networking Platform |

|
Utilize the extensive out-of-the box features or customize your site through Ektron CMS400.NET's open architecture |
 |
Promote collaboration in your organization through project workspaces where others can efficiently find information and work together |
 |
Author/edit content, manage navigation, menus, audit trails, workflow and approvals with the best in breed Content Management |
|
|
|
|
See why there are 20,000+ Ektron integrations worldwide.
|
|
 |
TAKE THE VIDEO TOUR |
 |
or download a FREE TRIAL today. |
|