PHP“AND 或 &&”操作员问题
我有:
if($this->itemCount <= 11 ) {
$item['subtotal'] = 12.95 * $item['qty'];
$item['price'] = 12.95;
$this->update_item($item['id'], $item['qty'], $item['price']);
}
但我需要一个“and”运算符来检查它是否也等于或大于2。
if($this->itemCount <= 11 && => 2 )
我不知道如何在PHP中执行此操作。 :(
I have:
if($this->itemCount <= 11 ) {
$item['subtotal'] = 12.95 * $item['qty'];
$item['price'] = 12.95;
$this->update_item($item['id'], $item['qty'], $item['price']);
}
But I need an "and" operator in there to check whether or not its also equal to or greater than 2.
if($this->itemCount <= 11 && => 2 )
I don't know how to do this in PHP. :(
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
if($this->itemCount <= 11 && $this->itemCount => 2 )
if($this->itemCount <= 11 && $this->itemCount => 2 )
您只需写出完整的表达式:
You just need to write the full expression out: