语法错误,意外的“)”,期望的“”在每个循环中
嗨,这是我的代码,不知道为什么,但我在标记行上有一个愚蠢的语法错误。 请为 php nob 带来一些光明。
Parse error: syntax error, unexpected ')', expecting ';' in /var/www/stats/upd_tr_stats.php on line 38
Hi, this is my code, don't know why but I have a stupid syntax error,on the marked line.
Please bring some light for a php nob.
Parse error: syntax error, unexpected ')', expecting ';' in /var/www/stats/upd_tr_stats.php on line 38
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您需要使用
while
循环而不是for
。You need to use a
while
loop instead of afor
.在 php.net 中
,你的 for 函数不会有三种表达方式。
in php.net
so, your for function doesn't have three expression.
这不是一个foreach语句,而是一个for语句。这就是为什么它期待 ;
但你仍然缺少一部分。
This is not a foreach statement, but a for statement. That's why it is expecting a ;
But you are still missing a part.