去PHP官网下载php8.0 window 版本,https://windows.php.net/download#php-8.0
根据自己的系统选择版本
我下载的是:
https://windows.php.net/downloads/releases/php-8.0.0-nts-Win32-vs16-x64.zip
解压到php8.0,在根目录复制php.ini-development并改名为php.ini
启动cgi
c:\php8.0>php-cgi.exe -b 127.0.0.1:9999
在nginx配置文件修改fastcgi_pass
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9999;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
如果是使用phpstudy8.1,则直接把上面的php8.0文件夹目录复制到Phpstudy集成环境的php目录下就能直接使用,直接用PHP study创建站点,选择使用php8就能使用
网友评论