如何使用 php_value 从 .htaccess 修改 opcache.interned_strings_buffer

How to modify opcache.interned_strings_buffer from .htaccess with php_value

我想通过.htaccess文件将opcache.interned_strings_buffer修改为12

我已将以下块添加到 .htaccess

php_value opcache.interned_strings_buffer 12
php_value max_execution_time 180
php_value max_input_vars 1760

然而只有 max_execution_timemax_input_vars 改变了。

我通过检查 phpinfo() 输出验证值已更改。

如何通过.htaccess更改opcache.interned_strings_buffer

根据文档,大多数 opcache 指令是 PHP_INI_SYSTEM,因此它们应该可以在 httpd.conf 或 .htaccess 上更改。但是 opcache 是一个 zend 扩展,不能通过 .htaccess 更新值。我想这就是问题所在。

a ticket on php.net开了4年