PHP: debug_print_backtrace - Manual in Deutsh
PHP: debug_print_backtrace - Manual in French
PHP: debug_print_backtrace - Manual in Polish

You Are At PHP: debug_print_backtrace - Manual Area


recent searches:
include functions , variable functions , post functions...




If you are new to PHP or just need to refresh your skills, this is the place to start. This series of tutorials will give you the basic knowledge you will need to create a simple PHP website.

PHP is a reflective programming language originally designed for producing dynamic web pages.[1] PHP is used mainly in server-side scripting, but can be used from a command line interface or in standalone graphical applications. Textual User Interfaces can also be created using ncurses.

PHP Manual
PrevNext

debug_print_backtrace

(PHP 5)

debug_print_backtrace --  Prints a backtrace

Description

void debug_print_backtrace ( void )

debug_print_backtrace() prints a PHP backtrace. It prints the function calls, included/required files and eval()ed stuff.

Parameters

This function has no parameters.

Return Values

No value is returned.

Examples

Example 1. debug_print_backtrace() example

<?php
// include.php file

function a() {
    
b();
}

function
b() {
    
c();
}

function
c(){
    
debug_print_backtrace();
}

a();

?>
<?php
// test.php file
// this is the file you should run

include 'include.php';
?>

The above example will output something similar to:

#0  eval() called at [/tmp/include.php:5]
#1  a() called at [/tmp/include.php:17]
#2  include(/tmp/include.php) called at [/tmp/test.php:3]

#0  c() called at [/tmp/include.php:10]
#1  b() called at [/tmp/include.php:6]
#2  a() called at [/tmp/include.php:17]
#3  include(/tmp/include.php) called at [/tmp/test.php:3]

See Also

debug_backtrace()

Jak ograniczyć jedzenie słodyczy Jak ograniczyć jedzenie słodyczy
6
www.finansowo.podejrzliwy.kalisz.pl
Prezenty
tanie holowanie Rzeszów

Another Useful functions:


zend-api.zend-output-debug-string | zend-api.zend-fetch-debug-backtrace | function.samconnection-setdebug | function.ociinternaldebug | function.oci-internal-debug | function.mysqli-dump-debug-info | function.mysqli-debug | function.memcache-debug | function.maxdb-dump-debug-info | function.maxdb-debug | function.debugger-on | function.debugger-off | function.debug-zval-dump | function.debug-print-backtrace | function.debug-backtrace | debugger | debugger-using | debugger-protocol |


PHP is a widely-used general-purpose scripting language that is especially suited for Web development and can be embedded into HTML. If you are new to PHP and want to get some idea of how it works, try the introductory tutorial. After that, check out the online manual, and the example archive sites and some of the other resources available in the links section.