php opcache变量未正确设置

时间:2017-12-03 19:17:36

标签: php opcache

我正在尝试将变量设置为在我的php.ini文件中设置opcahe。 phpinfo说:

Configuration File (php.ini) 
Path    /etc/php/7.0/fpm
Loaded Configuration File   /etc/php/7.0/fpm/php.ini 
Scan this dir for additional .ini files   /etc/php/7.0/fpm/conf.d 
Additional .ini files parsed    /etc/php/7.0/fpm/conf.d/10-mysqlnd.ini,
  

/etc/php/7.0/fpm/conf.d/10-opcache.ini,

/etc/php/7.0/fpm/conf.d/10-pdo.ini,
/etc/php/7.0/fpm/conf.d/15-xml.ini,
...

和/etc/php/7.0/fpm/conf.d/10-opcache.ini,包含:

zend_extension=opcache.so
opcache.enable=1
opcache.enable_cli=1
opcache.fast_shutdown=1
opcache.interned_strings_buffer=8
opcache.max_accelerated_files=10000
opcache.memory_consumption=128
opcache.save_comments=1
opcache.revalidate_freq=1
opcache.file_cache=/tmp;

当我查看opcache的phpinfo结果时,我看到:

opcache.enable  On  On
opcache.enable_cli  Off Off
opcache.max_accelerated_files   2000    2000
opcache.interned_strings_buffer 4   4
opcache.memory_consumption  64  64
opcache.revalidate_freq 2   2

有谁知道为什么它不采取我的变量???

1 个答案:

答案 0 :(得分:0)

解决了,但我真的不知道如何。 我刚刚(重新)安装了php7-intl和php7-sqlite3以解决其他问题,然后关于opcache的错误信息消失了