Webserver¶
A webserver
PHP is able to be integrated in many webservers: Apache, nginx, lighthttpd, Litespeed,…
PHP is able to run in server mode. In command line, use the -S
option.
php -S localhost:8000 index.php
See also Built-in web server, Installation and Configuration
Related : Command Line Interface (CLI)