上传到共享域 cpanel 时 index.php 出错

error in index.php when uploading to share domain cpanel

将项目上传到 cpanel 时 我在 index.PHP

中遇到错误

我正在使用 php>=5.6.4 和 laravel 5.3

这个错误

Parse error: syntax error, unexpected T_CLASS, expecting T_STRING or T_VARIABLE or '$' in /home/hamada11/public_html/madeineuromed.com/public_html/index.php on line 50.

在这一行

$kernel = $app->make(Illuminate/Contracts/Http/Kernel::class);

您的 PHP 版本低于 5.5 版。此功能是在 5.5 版中添加的,并在 migration guide.

中进行了描述

"It is possible to use ClassName::class to get a fully qualified name of class ClassName."

我建议看看您的托管公司是否可以为您升级 PHP。否则,例如,如果您只是 "fix" 通过围绕它编码,您可能会遇到许多其他(类似的)错误。