系统相关
首页 > 系统相关> > 是否可以在PHP 5.3.6 / IIS / Windows 2008上运行APC?

是否可以在PHP 5.3.6 / IIS / Windows 2008上运行APC?

作者:互联网

问题是我找不到任何二进制文件,APC部分从不出现在信息显示中,并且apc监视器指出APC没有运行.

有没有办法使APC PHP IIS正常工作?

谢谢

解决方法:

您需要一个配件库.

请注意版本号.从您的phpinfo()或php -i中,您可以找到所需的版本:

有三个不同的因素:

> 32位和64位
> VC6与VC9(Visual Studio编译器版本)

If you are using PHP with Apache 1 or Apache2 from apache.org you need to use the VC6 versions of PHP

If you are using PHP with IIS you should use the VC9 versions of PHP

VC6 Versions are compiled with the legacy Visual Studio 6 compiler

VC9 Versions are compiled with the Visual Studio 2008 compiler and have improvements in performance and stability. The VC9 versions require you to have the Microsoft 2008 C++ Runtime (x86) or the Microsoft 2008 C++ Runtime (x64) installed

查看:http://windows.php.net/

>线程安全与非线程安全. (TS / NTS)

php -i|grep VC
Compiler => MSVC9 (Visual C++ 2008)
Zend Extension Build => API220090626,TS,VC9
PHP Extension Build => API20090626,TS,VC9

我通常在这里获取它们(32位):
http://downloads.php.net/pierre/

或此处(64位):http://www.anindya.com/

标签:iis,pac,windows,php
来源: https://codeday.me/bug/20191102/1991639.html