php最新版本是 8.x ,不过对环境要求较高,所以先用 7.x 版本安装。
首先到 php官网,下载7.x最高版本,选一个线程案例版下载。放置到目标文件夹,并解压缩。
解出一个配置文件,将php.ini-development复制一份并改名为php.ini。
至此,php就安装好了。
可以通过命令运行起来解析器
php-cgi.exe -b 127.0.0.1:9000 -c php.ini
还需要运行服务器,这里为了简单,使用 nginx ,安装方法在这里,将nginx安装后,修改一下nginx.conf配置文件,打开以下部分
location ~ \.php$ {
root html; #根路径,可以使用绝对路径
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
请注意,需要使用$document_root变量指定根路径,替代$scripts变量。
同时需要替换
location / {
root html;
index.html index.htm;
}
为
location / {
root html; #根路径,可以使用绝对路径
index index.php index.html index.htm;
}
即增加了index.php解析。
编辑index.php文件
<?php
echo "nginx";
phpinfo();
?>
保存到 nginx/html下。
启动nginx后,可以访问到php的信息。