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.
我有一个最近升级到 PHP5 的客户。他有一个错误说
Parse error: syntax error, unexpected T_CLONE, expecting T_STRING in ms/kernel/object.php on line 528
我正在查看代码,但无法弄清楚为什么会这样。谁能帮帮我吗?
由于您没有提供代码,我只能猜测您有使用 now 保留关键字clone(from T_CLONE) 的类。
clone
T_CLONE
如果您只是简单地将所有实例替换为clonewith acloneor clone1or something,就可以了,尽管这是一个非常老套的解决方案。这是一个关键指标,表明您使用的任何库都是专门为 PHP4 编写的,并且尚未升级到 5。
aclone
clone1