From 8d8fa72cca27b1246232b236a436e2a98fe502b2 Mon Sep 17 00:00:00 2001 From: Rogerio Prado de Jesus Date: Fri, 21 Jun 2013 18:21:42 -0300 Subject: [PATCH 1/2] Bump PHP current version to 5.5 in Use-the-Current-Stable-Version.md Signed-off-by: Rogerio Prado de Jesus --- _posts/01-02-01-Use-the-Current-Stable-Version.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/_posts/01-02-01-Use-the-Current-Stable-Version.md b/_posts/01-02-01-Use-the-Current-Stable-Version.md index ccb0b35..d8d5881 100644 --- a/_posts/01-02-01-Use-the-Current-Stable-Version.md +++ b/_posts/01-02-01-Use-the-Current-Stable-Version.md @@ -1,11 +1,11 @@ --- -title: Use the Current Stable Version (5.4) +title: Use the Current Stable Version (5.5) isChild: true --- -## Use the Current Stable Version (5.4) {#use_the_current_stable_version_54_title} +## Use the Current Stable Version (5.5) {#use_the_current_stable_version_55_title} -If you are just getting started with PHP make sure to start with the current stable release of [PHP 5.4][php-release]. PHP has made great strides adding powerful [new features](#language_highlights) over the last few years. Don't let the minor version number difference between 5.2 and 5.4 fool you, it represents _major_ improvements. If you are looking for a function or it's usage, the documentation on the [php.net][php-docs] website will have the answer. +If you are just getting started with PHP make sure to start with the current stable release of [PHP 5.5][php-release]. PHP has made great strides adding powerful [new features](#language_highlights) over the last few years. Don't let the minor version number difference between 5.2 and 5.5 fool you, it represents _major_ improvements. If you are looking for a function or it's usage, the documentation on the [php.net][php-docs] website will have the answer. [php-release]: http://www.php.net/downloads.php [php-docs]: http://www.php.net/manual/en/ From c0152e6b5307b21e9e848f7d5242429ac37ebee5 Mon Sep 17 00:00:00 2001 From: Rogerio Prado de Jesus Date: Fri, 21 Jun 2013 18:24:20 -0300 Subject: [PATCH 2/2] Inform that built-in web server is a 5.4+ feature Signed-off-by: Rogerio Prado de Jesus --- _posts/01-03-01-Built-in-Web-Server.md | 2 +- _posts/01-05-01-Windows-Setup.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/_posts/01-03-01-Built-in-Web-Server.md b/_posts/01-03-01-Built-in-Web-Server.md index 076a04e..2e9228d 100644 --- a/_posts/01-03-01-Built-in-Web-Server.md +++ b/_posts/01-03-01-Built-in-Web-Server.md @@ -5,7 +5,7 @@ isChild: true ## Built-in web server {#builtin_web_server_title} -You can start learning PHP without the hassle of installing and configuring a full-fledged web server (PHP 5.4 required). To start the server, run the following from your terminal in your project's web root: +You can start learning PHP without the hassle of installing and configuring a full-fledged web server (PHP 5.4+ required). To start the server, run the following from your terminal in your project's web root: > php -S localhost:8000 diff --git a/_posts/01-05-01-Windows-Setup.md b/_posts/01-05-01-Windows-Setup.md index c6430bf..87021e3 100644 --- a/_posts/01-05-01-Windows-Setup.md +++ b/_posts/01-05-01-Windows-Setup.md @@ -7,7 +7,7 @@ isChild: true PHP is available in several ways for Windows. You can [download the binaries][php-downloads] and until recently you could use a '.msi' installer. The installer is no longer supported and stops at PHP 5.3.0. -For learning and local development you can use the built in webserver with PHP 5.4 so you don't need to worry about configuring it. If you +For learning and local development you can use the built in webserver with PHP 5.4+ so you don't need to worry about configuring it. If you would like an "all-in-one" which includes a full-blown webserver and MySQL too then tools such as the [Web Platform Installer][wpi], [Zend Server CE][zsce], [XAMPP][xampp] and [WAMP][wamp] will help get a Windows development environment up and running fast. That said, these tools will be a little different from production so be careful of environment differences if you are working on Windows and deploying to Linux.