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 try { essayez { throw new Exception("Une erreur s'est produite", 1); } catch(Exception $e1) { throw new Exception("Une autre erreur s'est produite", 2, $e1); } } catch (Exception $e2) { echo $previous = $e2->getPrevious(); echo $previous->getMessage(); } ?> </body> </html>
Exception: An error occurred in /home/TwT0ln/prog.php:8
Stack trace:
#0 {main}Une erreur s'est produite