我想将 symfony 网站从 php 5.6 迁移到 php 7.1.4
我收到了这个错误:
AnnotationException in AnnotationException.php line 193:
You have to enable opcache.load_comments=1 or zend_optimizerplus.load_comments=1.
我的 php.ini 我已经opcache.save_comments
设置为“1”,所以我opcache.load_comments=1
在 php.ini 中添加了但是当我看到我phpinfo()
的 opcache.load_comments 参数没有出现......如果我尝试:
ini_set('opcache.load_comments', 1);
echo "VALUE : " . ini_get('opcache.load_comments');
它也不起作用...