mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 17:41:41 +00:00
Correct form of string concatenation.
This commit is contained in:
parent
0ab2ec2d73
commit
124273ffbe
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user