启用PHP 5.5 OPCache

时间:2015-03-06 13:21:59

标签: php caching php-5.5 opcache

配置OPCache as recomanded后,它无效。

那么,如何调试OPCache以查看问题所在?

或者我错过了什么?

我的配置:

的php.ini enter image description here

php -v enter image description here

enter image description here

在代码中

opcache_get_status(); // return false
//but
extension_loaded('Zend OPcache') // return true

2 个答案:

答案 0 :(得分:3)

已经有一段时间了,所以我想你已经离开了这个问题,但万一你还没有。注意到你正在运行Xdebug ......

您是否检查过php.ini以确保以下内容不是问题?

If you want to use OPcache with » Xdebug, you must load OPcache before Xdebug.

http://php.net/manual/en/opcache.installation.php

另一件值得一提的是,您不需要指定共享库的路径。以下就足够了:

zend_extension=opcache.so

答案 1 :(得分:1)

我有同样的问题。我已在php.ini位置编辑了C:\wamp\bin\apache\apache2.4.17\bin个文件,问题已解决。然而,在php.ini路径中编辑C:\wamp\bin\php\php5.6.15之前。 您应该在php.ini路径中修改C:\wamp\bin\apache\apache2.4.17\bin文件。我很享受OPCache的速度!