-
Notifications
You must be signed in to change notification settings - Fork 524
/
16_exceptions.php
45 lines (35 loc) · 1.1 KB
/
16_exceptions.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?php
/* ----------- Exceptions ----------- */
/*
PHP has an exception model similar to that of other programming languages. An exception can be thrown, and caught ("catched") within PHP. Code may be surrounded in a try block, to facilitate the catching of potential exceptions. Each try must have at least one corresponding catch or finally block.
*/
function inverse($x) {
if (!$x) {
throw new Exception('Division by zero.');
}
return 1/$x;
}
// echo inverse(0); // Causes an exception to be thrown and stops script execution
// Handles the exception
// try {
// echo inverse(5) . ' ';
// echo inverse(0) . ' '";
// } catch (Exception $e) {
// echo 'Caught exception: ', $e->getMessage(), ' ';
// }
// Finally block is executed regardless of whether an exception is thrown or not
try {
echo inverse(5) . ' ';
} catch (Exception $e) {
echo 'Caught exception: ', $e->getMessage(), ' ';
} finally {
echo 'First finally ';
}
try {
echo inverse(0) . ' ';
} catch (Exception $e) {
echo 'Caught exception: ', $e->getMessage(), ' ';
} finally {
echo "Second finally ";
}
echo 'Hello World';