PHP 8.4.0 Alpha 1 available for testing

Voting

The Note You're Voting On

tianyiw at vip dot qq dot com
10 months 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