mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-24 01:51:38 +00:00
Merge pull request #3383 from divayprakash/fix-php
[php/en] Fix exception handling example
This commit is contained in:
commit
19ba7e09b4
@ -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
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user