Answers for "php serve host"

PHP
2

php serve

// to serve folder foo in public
$ cd ~/public
$ php -S localhost:8000 -t foo/
Posted by: Guest on December-18-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