Answers for "php exception try catch finally"

PHP
1

try catch php

function inverso($x) {
    if (!$x) {
        throw new Exception('Zero division.');
    }
    return 1/$x;
}

try {
    echo inverso(5) . "\n";
    echo inverso(0) . "\n";
} catch (Exception $e) {
    echo 'and the error is: ',  $e->getMessage(), "\n";
}
Posted by: Guest on December-13-2020
1

try catch php

try {
}
catch(Exception $e) {
}
Posted by: Guest on April-23-2021

Browse Popular Code Answers by Language