function inverso($x) { if (!$x) { throw new Exception('Zero division.'); } return 1/$x; } try { echo inverso(5) . "\n"; echo inverso(0) . "\n"; } catch ...
確定! 回上一頁