Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 解析错误:语法错误,意外的 '(',期待 ',' 或 ';' in
我收到以下错误:
解析错误:语法错误,意外的 '.',期待 ',' 或 ';' 在第 19 行的 xxx 中
在这条线上:
public $metad_name = "lol" . "lol";
此错误表示不能在类属性中使用表达式:
class Foo { public $metad_name = ''; function __construct() { $this->metad_name = 'lol' . 'lol'; } }
class Bar { public $metad_name = 'lol' . 'lol'; }
如果您的代码不是类属性 - 只需删除public
public