update : 2015.11.03
php.shukuma.com검색:
|
debug_print_backtrace(PHP 5, PHP 7) debug_print_backtrace — Prints a backtrace 설명
void debug_print_backtrace
([ int
$options = 0
[, int $limit = 0
]] )debug_print_backtrace() prints a PHP backtrace. It prints the function calls, included/required files and eval()ed stuff. 인수
반환값값을 반환하지 않습니다. 변경점
예제
Example #1 debug_print_backtrace() example
<?php
<?php 위 예제의 출력 예시: #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] |