PHP - Error and Exception Handling
What will be the output of this PHP code?
function test() {
try {
echo "Try ";
return;
} finally {
echo "Finally ";
}
echo "After";
}
test();