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 { $rand = rand(0, 2); switch($rand) { case 0: throw new Exception(); cas 1 : lancer une OutOfBoundsException(); cas 2 : lancer une LogicException(); } } catch(OutOfBoundsException $e) { echo "Exception hors limites capturée"; } catch(LogicException $e) { echo "Exception de logique interceptée"; } catch(Exception $e) { echo "Exception ordinaire attrapée"; } ?> </body> </html>
Attrapé une exception hors limites