From 124273ffbe9ac370b99ca7fecd24d2656552ca9a Mon Sep 17 00:00:00 2001 From: Malcolm Fell Date: Fri, 28 Jun 2013 08:48:53 +1200 Subject: Correct form of string concatenation. --- php.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'php.html.markdown') diff --git a/php.html.markdown b/php.html.markdown index 4dafe6ad..ce96b457 100644 --- a/php.html.markdown +++ b/php.html.markdown @@ -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 -- cgit v1.2.3