1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-05 06:17:36 +02:00

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
// Manipulation
$concatenated = $sgl_quotes + $dbl_quotes;
$concatenated = $sgl_quotes . $dbl_quotes;
```
### Compound