Dans le code PHP donné, la fonction child_func() appelle la fonction parent_func(), qui appelle en outre la fonction grandparent_func(), générant ainsi une pile d'appels.
Étude recommandée : "Tutoriel PHP"
Les trois méthodes d'impression de la pile d'appels PHP sont les suivantes :
Méthode 1 : Utilisez la fonction debug_print_backtrace() pour imprimer la pile d'appels.
Exemple :
<?php // 用于打印PHP调用堆栈的PHP程序 //调用函数parent_func function child_func() { parent_func(); } // 调用grandparent_func函数 function parent_func() { grandparent_func(); } // 函数的作用是:打印调用堆栈 function grandparent_func() { debug_print_backtrace(); } //主函数调用 child_func(); ?>
Sortie :
#0 grandparent_func() called at [/home/905a3b4d90f10b30521fedcb56c99fba.php:12] #1 parent_func() called at [/home/905a3b4d90f10b30521fedcb56c99fba.php:7] #2 child_func() called at [/home/905a3b4d90f10b30521fedcb56c99fba.php:21]
Méthode 2 : Utilisez la fonction debug_backtrace() pour imprimer la pile d'appels.
Exemple :
<?php // 用于打印PHP调用堆栈的PHP程序 //函数调用parent_func function child_func() { parent_func(); } // 函数调用grandparent_func function parent_func() { grandparent_func(); } // 函数的作用是:打印调用堆栈 function grandparent_func() { var_dump(debug_backtrace()); } // 主函数调用 child_func(); ?>
Sortie :
array(3) { [0]=> array(4) { ["file"]=> string(42) "/home/2b81f040639170c49a6a58adb23d5154.php" ["line"]=> int(12) ["function"]=> string(16) "grandparent_func" ["args"]=> array(0) { } } [1]=> array(4) { ["file"]=> string(42) "/home/2b81f040639170c49a6a58adb23d5154.php" ["line"]=> int(7) ["function"]=> string(11) "parent_func" ["args"]=> array(0) { } } [2]=> array(4) { ["file"]=> string(42) "/home/2b81f040639170c49a6a58adb23d5154.php" ["line"]=> int(21) ["function"]=> string(10) "child_func" ["args"]=> array(0) { } } }
Méthode 3 : La fonction membre getTraceAsString() de la classe Exception renvoie un appel empiler.
Exemple :
<?php // 用于打印PHP调用堆栈的PHP程序 //函数调用parent_func function child_func() { parent_func(); } // 函数调用grandparent_func function parent_func() { grandparent_func(); } // 函数的作用是:打印调用堆栈 function grandparent_func() { $e = new Exception; var_dump($e->getTraceAsString()); } // 主函数调用 child_func(); ?>
Sortie :
string(207) "#0 /home/8d8303d43667a4915d43dab7d63de26d.php(12): grandparent_func() #1 /home/8d8303d43667a4915d43dab7d63de26d.php(7): parent_func() #2 /home/8d8303d43667a4915d43dab7d63de26d.php(22): child_func() #3 {main}"
Cet article est une introduction à trois méthodes permettant d'imprimer des piles d'appels en PHP, j'espère. cela vous aidera si vous avez besoin de l'aide de vos amis !
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!