Files
php-the-right-way/_posts/01-03-01-Built-in-Web-Server.md
2023-01-17 23:57:25 +01:00

540 B

title, isChild, anchor
title isChild anchor
Built-in Web Server true builtin_web_server

Built-in web server

With PHP 5.4 or newer, you can start learning PHP without installing and configuring a full-fledged web server. To start the server, run the following command from your terminal in your project's web root:

{% highlight console %}

php -S localhost:8000 {% endhighlight %}