推荐:《PHP视频教程》因为平时经常会执行一些PHP代码片段,或临时的项目等,做测试使用,办公环境在虚拟机中,我不想因为一些个人的测试而去破坏办公环境;因此可以在win本地仅安装一个PHP(安装省略),或者虚拟机中的Linux安装PHP来运行测试任务;(建议用虚拟机中Linux方式)再次提醒,这种方式仅本地测试使用;# 在自己家目录下创建www目录
[root@localhost ~]# mkdir www
[root@localhost ~]# cd www/
# 创建几个php脚本用于测试
index.php
info.php
# 启动一个Web服务器
[root@localhost www]# php -S 192.168.204.151:8000
# 注意:因为我是采取虚拟机中Linux,所以这里直接使用了ip,如果是本地win下,可以直接localhost:8000
请求http://192.168.204.151:8000/,返回效果如下
请求http://192.168.204.151:8000/info.php,返回效果如下
启动时指定一个根目录# 在~/www下创建一个test目录,并添加php脚本文件(~/www/test/index.php)mkdir ~/www/test
# 启动web[root@localhost www]# php -S 192.168.204.151:8000 -t test/
访问测试
指定某个脚本,使其作为router# 先创建一个router.php
[root@localhost www]# vi router.php
[root@localhost www]# cat router.php
if (preg_match('/.(?:png|jpg|jpeg|gif|txt)$/', $_SERVER["REQUEST_URI"]))
return false; // 直接返回请求的文件
else {
echo "
Welcome to PHP
";}
# 创建一个txt文件或者图片
[root@localhost www]# ll
-rw-r--r-- 1 root root 31 12月 4 10:56 hello.txt 测试用
-rw-r--r-- 1 root root 65 12月 4 10:35 index.php
-rw-r--r-- 1 root root 17 12月 4 10:36 info.php
-rw-r--r-- 1 root root 177 12月 4 10:55 router.php
drwxr-xr-x 2 root root 23 12月 4 10:49 test
# 启动web
[root@localhost www]# php -S 192.168.204.151:8000 router.php
# 请求需要经过router.php处理
直接请求192.168.204.151:8000/
请求一个txt文件,返回改文件的内容
总结:使用这种方式,个人做测试时比较方便,如有错误之处,欢迎指正!