meta data for this page
Exceptions
Pour gérer les erreurs en PHP
http://php.net/manual/fr/language.exceptions.php
1 2 3 4 5 6 7 8 9 10 11 12 |
function divide ( $a , $b ){ if ( $b == 0){ throw new Exception( "erreur" ); } return $a / $b ; } try { echo divide(2,0); } catch (Exception $e ){ echo $e ->getMessage(); } |