meta data for this page
Exceptions
Pour gérer les erreurs en PHP
http://php.net/manual/fr/language.exceptions.php
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(); }