T_BOOLEAN_AND 错误?
这有什么问题吗?请有人帮助我..
if(stripos($nerde, $hf) !== false) && (stripos($nerde, $rs) !== false){
@mysql_query("update table set dltur = '3' where id = '".$ppl[id]."'");
}
else {
//dont do anything
}
我收到 T_BOOLEAN_AND 错误。
whats wrong with this? anybody help me please..
if(stripos($nerde, $hf) !== false) && (stripos($nerde, $rs) !== false){
@mysql_query("update table set dltur = '3' where id = '".$ppl[id]."'");
}
else {
//dont do anything
}
i get T_BOOLEAN_AND error.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
整个条件需要括号:
The entire condition needs parentheses:
if
条件的完整表达式需要放在括号内。但是您已经在第一个false
之后关闭了if
语句的该部分:这样写:
或者您在整个表达式两边加上括号(Ignacio Vazquez-Abrams 建议):
The whole expression of an
if
condition needs to be put in parentheses. But you’re already closing that part of theif
statement after the firstfalse
:Write it this way:
Or you put parentheses around the whole expression (Ignacio Vazquez-Abrams suggested):