14.16 – 永夜 https://www.shuijingwanwq.com 没有不值得去解决的问题,也没有不值得去学习的技术! Wed, 22 Dec 2021 01:05:38 +0000 zh-Hans hourly 1 https://wordpress.org/?v=7.0 在 Windows 10 专业版中,php-cgi.exe 无法运行的排查分析 https://www.shuijingwanwq.com/2021/12/22/5552/ https://www.shuijingwanwq.com/2021/12/22/5552/#respond Wed, 22 Dec 2021 01:05:38 +0000 https://www.shuijingwanwq.com/?p=5552 浏览量: 104 1、在 Windows 10 专业版中,PHP 无法运行的排查分析。执行命令:php-cgi.exe -b 127.0.0.1:9000-c C:/php-7.4.27/php.ini ,自动退出。如图1
在 Windows 10 专业版中,PHP 无法运行的排查分析。执行命令:php-cgi.exe -b 127.0.0.1:9000-c C:/php-7.4.27/php.ini ,自动退出。

图1

2、安装 Visual C++ 2015运行库 64位,如图2
安装 Visual C++ 2015运行库 64位

图2

3、再次执行命令:php-cgi.exe -b 127.0.0.1:9000-c C:/php-7.4.27/php.ini ,报错:PHP Warning: ‘vcruntime140.dll’ 14.0 is not compatible with this PHP build linked with 14.16 in Unknown on line 0 。如图3
再次执行命令:php-cgi.exe -b 127.0.0.1:9000-c C:/php-7.4.27/php.ini ,报错:PHP Warning:  'vcruntime140.dll' 14.0 is not compatible with this PHP build linked with 14.16 in Unknown on line 0

图3



PS C:\php-7.4.27> php-cgi.exe -b 127.0.0.1:9000-c C:/php-7.4.27/php.ini
PHP Warning:  'vcruntime140.dll' 14.0 is not compatible with this PHP build linked with 14.16 in Unknown on line 0
PS C:\php-7.4.27>


4、重启电脑,仍然报同样的错误。参考网址:https://www.shuijingwanwq.com/2019/01/24/3139/ ,VC15 版本需要安装 Visual Studio 2017 x64 或 x86 的 Visual C ++ Redistributable,下载并安装 Microsoft Visual C++ Redistributable for Visual Studio 2017。安装 Visual CPP 2017运行库 64位。不再报错。如图4
安装 Visual CPP 2017运行库 64位。不再报错。

图4



PS C:\Windows\system32> php-cgi.exe -b 127.0.0.1:9000-c C:/php-7.4.27/php.ini
PHP Warning:  'vcruntime140.dll' 14.0 is not compatible with this PHP build linked with 14.16 in Unknown on line 0
PS C:\Windows\system32> php-cgi.exe -b 127.0.0.1:9000-c C:/php-7.4.27/php.ini


5、执行命令:php -v,正确显示 PHP 版本。如图5
执行命令:php -v,正确显示 PHP 版本。

图5



PS C:\Windows\system32> php -v
PHP 7.4.27 (cli) (built: Dec 14 2021 19:52:13) ( ZTS Visual C++ 2017 x64 )
Copyright (c) The PHP Group
Zend Engine v3.4.0, Copyright (c) Zend Technologies
PS C:\Windows\system32>


 ]]>
https://www.shuijingwanwq.com/2021/12/22/5552/feed/ 0