PHP can run in different environments. The most common environment is CGI, which runs when PHP processes an HTTP request. However, it is also possible to run a PHP script from the Terminal, in which case it is a so-called CLI (Command-line interface…
As you already know, Composer is a robust package and dependency manager for PHP, through which you can elegantly manage hundreds of projects at once and distribute code once written to all applications simultaneously.
This tutorial serves as a…
Often we need to find out as much information about the server as possible, the native phpinfo() function is great for this:
phpinfo();
die; // after listing the configuration, exit the script
This makes it easy to find out the installed version,…
In the past, this page has discussed the Vertrigo web server that worked for Windows XP and earlier.
This web server is no longer modern (updated summer 2019) and I recommend avoiding it.
If you are looking for an easy way to install a web server on…