Update php.html.markdown

This commit is contained in:
Gayan 2015-10-07 15:13:17 +08:00
parent 0904a24f30
commit a03b400390

View File

@ -697,7 +697,7 @@ $cls = new SomeOtherNamespace\MyClass();
try { try {
// Do something // Do something
catch ( Exception $e) { } catch ( Exception $e) {
// Handle exception // Handle exception
} }
@ -705,7 +705,7 @@ catch ( Exception $e) {
try { try {
// Do something // Do something
catch (\Exception $e) { } catch (\Exception $e) {
// Handle exception // Handle exception
} }