PHP » PYTHON |
login |
register |
about
|
PYTHON debug_print_backtrace
is this article helpful?
|
Python replacement for PHP's debug_print_backtrace
[
edit
| history
]
import traceback traceback.print_stack() 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. ParametersThis function has no parameters. Return ValuesNo value is returned. Examples
Example #1 debug_print_backtrace() example
<?php
<?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]
|
more
Recently updated
more
Most requested
more
Last requests
|