diff options
author | Adam <adam@adambard.com> | 2013-06-27 09:35:59 -0700 |
---|---|---|
committer | Adam <adam@adambard.com> | 2013-06-27 09:35:59 -0700 |
commit | 31c16d7eb924fc4871cff7f68514185ed44d7d21 (patch) | |
tree | f5d7756856cb9c8d55df651321fe5bf5fa5503b0 /php.html.markdown | |
parent | 534c5dcb93210b063a145e98a066f28fb92bb472 (diff) |
Minor updates
Diffstat (limited to 'php.html.markdown')
-rw-r--r-- | php.html.markdown | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/php.html.markdown b/php.html.markdown index 18324736..947ee4a7 100644 --- a/php.html.markdown +++ b/php.html.markdown @@ -4,8 +4,6 @@ author: Malcolm Fell author_url: http://emarref.net/ --- -# PHP - This document describes PHP 5+. ## [Basic Syntax](http://www.php.net/manual/en/language.basic-syntax.php) @@ -74,7 +72,7 @@ $sgl_quotes END; // Nowdoc syntax is available in PHP 5.3.0 // Manipulation -$concatinated = $sgl_quotes + $dbl_quotes; +$concatenated = $sgl_quotes + $dbl_quotes; ``` ### Compound @@ -471,4 +469,4 @@ Visit the [official PHP documentation](http://www.php.net/manual/) for reference If you're interested in up-to-date best practices, visit [PHP The Right Way](http://www.phptherightway.com/). -If you're coming from a language with good package management, check out [Composer](http://getcomposer.org/).
\ No newline at end of file +If you're coming from a language with good package management, check out [Composer](http://getcomposer.org/). |