如果想快速验证一个网络服务,假设你要挂载的入口文件是index.php,则执行如下指令即开启了本地的80端口服务:
php -S 127.0.0.1:80 index.php
在index.php里写上:
<?php echo "this is a test !<br/>";
这样子,就可以在同一台上用curl 127.0.0.1,就能显示”this is a test!”。

分类: web

标签:   php