标签:tar 参数 php eve 服务器 develop 更换 start ted
正常情况下,使用 php artisan serve
启动 Laravel 内置服务器,将会监听在 localhost 的 8000 端口上
$ php artisan serve Laravel development server started on http://localhost:8000
假如我们希望更换监听的接口地址或端口号,可以使用 --host
参数与 --port
参数
$ php artisan serve --host=0.0.0.0 --port=8080 Laravel development server started on http://0.0.0.0:8080
标签:tar 参数 php eve 服务器 develop 更换 start ted
原文地址:https://www.cnblogs.com/yangfei123/p/11766426.html