我想将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'所以我在php.ini中添加了opcache.load_comments=1
但是当我看到我的phpinfo()
opcache.load_comments时参数没有出现......如果我尝试:
ini_set('opcache.load_comments', 1);
echo "VALUE : " . ini_get('opcache.load_comments');
它既不起作用......