Installing PHP

Windows 10

  1. Download PHP from the PHP For Windows site. I recommend downloading the non-thread safe PHP 7.1 or 7.2 (unless you want to use Apache and you know if you do). You will also need to choose 32 bit (x86) or 64 bit (x64) depending on your version of Windows.
  2. Download the corresponding Visual C++ Redistributable from the same site. For PHP 7.1, it is VC14 and for PHP 7.2, it is VC15.
  3. Install the VC redistrubutable using the downloaded executable.
  4. The PHP download comes in a zip folder. Extract the zip folder into your user directory in a folder named php. The path should look like C:\Users\username\php.
  5. Next, we need to add PHP to your environment variables path. Open "System" under "Control Panel". Go to the "Advanced" tab and select "Environment Variables". In the "User variables" section, select "Path" and click the "Edit" button. You will see a list of different folder paths. Add the PHP path to the list using the "Add" button. The PHP path is the same folder where you extracted PHP.
  6. Now, you can open PowerShell or Command Prompt and type php -v to verify PHP was installed correctly. It will return the installed version of PHP on your system.

MacOS

Good news! Each version of MacOS comes with PHP by default. However, if you are running an older version of MacOS or OS X, then you will need to manually install a new version of PHP. To check your current version, open Terminal and type php -v. You will need at least PHP 7.1 on your computer to use all the features in these tutorials.

  1. Install Homebrew.
  2. Run brew install php in Terminal.
  3. Check your version is correct by running php -v in Terminal.