php7关闭缓存、禁用缓存

  • 找到安装目录下的php.ini文件
    比如,/usr/local/php7/etc/php.ini
  • 将如下两行的1改为0:
[opcache]
; Determines if Zend OPCache is enabled
opcache.enable=1
; Determines if Zend OPCache is enabled for the CLI version of PHP
opcache.enable_cli=1

重启服务:

service php-fpm restart

你可能感兴趣的:(#,PHP,后端开发,php,缓存,禁用缓存,关闭缓存)