update page now

Voting

: one plus two?
(Example: nine)

The Note You're Voting On

tianyiw at vip dot qq dot com
2 years ago
Easy to understand `finally`.
<?php
try {
    try {
        echo "before\n";
        1 / 0;
        echo "after\n";
    } finally {
        echo "finally\n";
    }
} catch (\Throwable) {
    echo "exception\n";
}
?>
# Print:
before
finally
exception

<< Back to user notes page

To Top