Does the try-catch block continue execution after the catch?
1 2 3 4 5 6 7 | try { throw new Exception (1); } catch (Exception $exception) { echo "gotcha!"; } echo "what about me?"; |
The answer is Yes, it does.
Does the try-catch block continue execution after the catch?
1 2 3 4 5 6 7 | try { throw new Exception (1); } catch (Exception $exception) { echo "gotcha!"; } echo "what about me?"; |
The answer is Yes, it does.
© 2024 A Weblog of Priyank Maniar.