- Output for 8.2.0 - 8.2.27, 8.3.0 - 8.3.15, 8.4.1 - 8.4.2
- int(1)
<?php
function test () {
try {
$a = 1;
// throw new \Exception('test');
// echo 'try';
return $a;
} catch (\Exception $e) {
$a = 2;
return $a;
} finally {
// return $a;
}
}
var_dump(test());