diff --git a/language/types.xml b/language/types.xml index b3725222bf..78eab06df0 100644 --- a/language/types.xml +++ b/language/types.xml @@ -1,5 +1,5 @@ - + Types @@ -1082,7 +1082,15 @@ echo "I'd like to have another {${ strrev('reeb') }}, hips"; - Functions and method calls works since PHP 5. + Functions and method calls work since PHP 5. + + + + + Parsing variables within strings uses more memory than string + concatenation. When writing a PHP script in which memory usage is a + concern, consider using the concatenation operator (.) rather than + variable parsing.