تقوم الدالة debug_print_backtrace() بطباعة التتبع العكسي.
تعرض هذه الوظيفة البيانات التي تم إنشاؤها بواسطة رمز وظيفة debug_print_backtrace().
debug_print_backtrace()
<?phpfunction one($str1, $str2) { two("Glenn", "Quagmire"); }function two($str1, $str2) { three("Cleveland", "Brown" }function three($ str1, $str2) { debug_print_backtrace() }one("Peter", "Griffin");?>
يبدو إخراج الكود أعلاه كما يلي:
#0 ثلاثة (كليفلاند، براون) تم الاتصال به على [C:webfoldertest.php:8]#1 اثنان (Glenn، Quagmire) تم الاتصال به على [C:webfoldertest.php:4]#2 واحد (بيتر، جريفين) تم الاتصال به على [C :webfoldertest.php:15]