diff --git a/language/constants.xml b/language/constants.xml index d56db6fa8e..ea99cf3dfb 100644 --- a/language/constants.xml +++ b/language/constants.xml @@ -173,8 +173,9 @@ echo CONSTANT; As opposed to defining constants using define, constants defined using the const keyword must be declared at the top-level scope because they are defined at compile-time. - This means that they cannot be declared inside functions, loops or - if statements. + This means that they cannot be declared inside functions, loops, + if statements or try/ + catch blocks.