Correct form of string concatenation.

This commit is contained in:
Malcolm Fell 2013-06-28 08:48:53 +12:00
parent 0ab2ec2d73
commit 124273ffbe

View File

@ -74,7 +74,7 @@ $sgl_quotes
END; // Nowdoc syntax is available in PHP 5.3.0 END; // Nowdoc syntax is available in PHP 5.3.0
// Manipulation // Manipulation
$concatenated = $sgl_quotes + $dbl_quotes; $concatenated = $sgl_quotes . $dbl_quotes;
``` ```
### Compound ### Compound