本文介绍了laravel“解析错误:语法错误,意外的'const'(T_CONST),期望变量(T_VARIABLE)"的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我将laravel项目从本地移到了sharedhost但是laravel给出了这个错误:
i moved my laravel project from local to sharedhostbut the laravel give this error :
"Parse error: syntax error, unexpected 'const' (T_CONST), expecting variable (T_VARIABLE)"
在
public_html/vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php
主机php版本:7.0
host php version : 7.0
推荐答案
该代码仅在PHP 7.1及更高版本中有效.
That code only works from PHP 7.1 and up.
自PHP 7.1.0起,类常量允许使用可见性修饰符.
As of PHP 7.1.0 visibility modifiers are allowed for class constants.
升级您的PHP版本或使用Doctrine的DBal的早期版本.
Upgrade your PHP version or use an earlier version of Doctrine's DBal.
这篇关于laravel“解析错误:语法错误,意外的'const'(T_CONST),期望变量(T_VARIABLE)"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!