进入项目入口文件目录:cd D:\xampp\htdocs\nm\public
执行绑定端口号:php -S localhost:8181 router.php
程序处于运行状态:
Ctrl-C to quit,8181端口不能使用
Linux工具:nohup php -S localhost:8181 router.php &
nohup:不挂断的运行命令
&:放在后台执行
查看进程:ps aux | grep 8181
进入项目入口文件目录:cd D:\xampp\htdocs\nm\public
执行绑定端口号:php -S localhost:8181 router.php
程序处于运行状态:
Ctrl-C to quit,8181端口不能使用
Linux工具:nohup php -S localhost:8181 router.php &
nohup:不挂断的运行命令
&:放在后台执行
查看进程:ps aux | grep 8181