1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-05 14:27:51 +02:00

Merge pull request #3383 from divayprakash/fix-php

[php/en] Fix exception handling example
This commit is contained in:
Divay Prakash
2018-11-02 04:29:39 +05:30
committed by GitHub

View File

@@ -837,11 +837,14 @@ try {
// Handle exception
}
// When using try catch blocks in a namespaced environment use the following
// When using try catch blocks in a namespaced environment it is important to
// escape to the global namespace, because Exceptions are classes, and the
// Exception class exists in the global namespace. This can be done using a
// leading backslash to catch the Exception.
try {
// Do something
} catch (Exception $e) {
} catch (\Exception $e) {
// Handle exception
}