PHP“AND 或 &&”操作员问题

发布于 2024-11-08 06:56:24 字数 353 浏览 0 评论 0原文

我有:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

爱情眠于流年 2024-11-15 06:56:24
if($this->itemCount <= 11 && $this->itemCount >= 2) {
    // Your code here
}
if($this->itemCount <= 11 && $this->itemCount >= 2) {
    // Your code here
}
睫毛上残留的泪 2024-11-15 06:56:24

if($this->itemCount <= 11 && $this->itemCount => 2 )

if($this->itemCount <= 11 && $this->itemCount => 2 )

不回头走下去 2024-11-15 06:56:24
if($this->itemCount <= 11 && $this->itemCount >= 2 ) 
if($this->itemCount <= 11 && $this->itemCount >= 2 ) 
撩心不撩汉 2024-11-15 06:56:24

您只需写出完整的表达式:

if($this->itemCount <= 11 && $this->itemCount >= 2 ) 

You just need to write the full expression out:

if($this->itemCount <= 11 && $this->itemCount >= 2 ) 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文