Exécuter
❯
Exécuter le code
Ctrl+Alt+R
Changer d'orientation
Ctrl+Alt+O
Changer de thème
Ctrl+Alt+D
<!DOCTYPE html> <html> <body> <?php function myFunction($num) { throw new Exception("Une erreur s'est produite"); } try { maFonction(5); } catch (Exception $e) { print_r($e->getTraceAsString()); } ?> </body> </html>
#0 /home/abyQh7/prog.php(10): myFunction(5)
#1 {principal}