What does this code output?
1 try{
2 echo "bodacious";
3 throw new Exception();
4 } catch (Exception $e) {
5 echo "egregious";
7 } finally {
8 echo "excellent";
9 }
What does this code output?
1 try{
2 echo "bodacious";
3 throw new Exception();
4 } catch (Exception $e) {
5 echo "egregious";
7 } finally {
8 echo "excellent";
9 }