ฟังก์ชัน debug_print_backtrace() พิมพ์ backtrace
ฟังก์ชันนี้แสดงข้อมูลที่สร้างโดยโค้ดฟังก์ชัน debug_print_backtrace()
debug_print_backtrace()
<?phpfunction one($str1, $str2) { two("Glenn", "Quagmire"); }function two($str1, $str2) { three("Cleveland", "Brown"); }ฟังก์ชันสาม($ str1, $str2) { debug_print_backtrace(); }one("ปีเตอร์", "กริฟฟิน");?>
ผลลัพธ์ของโค้ดด้านบนมีลักษณะดังนี้:
#0 สาม(Cleveland, Brown) เรียกที่ [C:webfoldertest.php:8]#1 สอง(Glenn, Quagmire) เรียกที่ [C:webfoldertest.php:4]#2 หนึ่ง(Peter, Griffin) เรียกที่ [C :webfoldertest.php:15]