收到错误“Unexpected $end”在我的班级文件中
我正在编写一个处理不同产品的 php 库,在我的类中的某个地方我必须缺少大括号或其他东西,但我找不到它。
拥有调试器或敏锐眼睛的人是否能看出这段代码有什么问题?
提前致谢!
编辑:我认为这与 EquipmentDatabase 类中的查询有关
I'm writing a php library that handles different products, somewhere in my class I must have a missing curly brace or something but I can't find it.
Does someone with a debugger or keen eyes see anything wrong with this code?
Thanks in advance!
Edit: I think it's something with the query in the EquipmentDatabase class
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
ln 237,缺少关闭引号...
ln 237, missing close quote...
是的。缺少一个大括号。尝试将其插入到文件末尾(如果您在 Equipment 类中定义 EquipmentDatabase)或在文件的最后
?>
之前(如果您正在定义两个单独的类)。Yep. There's a missing curly brace. Try inserting it either at the end (if you're defining the EquipmentDatabase inside of the Equipment class) or at the very end of the file before
?>
(if you're defining two separate classes.