PHP is a popular scripting language that enables developers to create dynamic websites. If you need to access the PHP source code for a project, you can use the Wget utility. To download the PHP source code using Wget, follow these steps:

  1. Open a terminal window and type wget http://php.net/source.php -O php-src.tar.gz
  2. Extract the tarball to your computer by typing tar xvf php-src.tar.gz
  3. Change into the newly created php-src directory by typing cd php-src ..

Downloading files from the PHP mirrors is annoying, because by default the redirector makes the name of the filename change to just “mirror.” So how do you fix this? Luckily wget has a simple argument that you can use to fix it — and it is useful for many scenarios.

Whenever you want to force the output from the Wget command into a specific filename, you just need to use the -O argument (that’s a capital letter o), or the longer version, –output-document=FILE that is a lot of extra typing for no reason.

So to force PHP to download as a specific filename, you would use something like this:

That line would save the resulting download file from the mirror link to the filename php-5.5.14.tar.gz. You would change the version number for a different version, right? Yes, you would, because that isn’t even the latest version as of this moment.