Answers for "php local host"

PHP
17

run php server

cd path/to/your/app
php -S localhost:8000
Posted by: Guest on May-14-2020
3

serve php file

Open Terminal
php -S localhost:8000
Posted by: Guest on August-10-2020
1

php make server

cd <PATH TO YOUR APP>
php -S localhost:<PORT>
Posted by: Guest on October-03-2020
0

how to host a php server

php artisan serve --host your-ip-add --port 8000

// Example with port
php artisan serve --host 192.168.1.001 --port 8000
Posted by: Guest on January-27-2021

Browse Popular Code Answers by Language