gpt4 book ai didi

PHP:在 if 条件下使用 $count++

转载 作者:行者123 更新时间:2023-12-02 06:18:00 24 4
gpt4 key购买 nike

我想知道 $count++ 递增计数器的方式是否可以在条件语句中使用?变量会保持它的新值吗?

$count = 0;
foreach ($things as $thing){
if($count++ == 1) continue;
...
}

最佳答案

  • $count++ 是一个后增量。这意味着它将增加 评估。
  • ++$count 是一个预增量。这意味着它将增加 之前 评估。

  • http://www.php.net/manual/en/language.operators.increment.php

    要回答您的问题,这是完全有效的,只需检查 if 完成后您的值是否为 2。

    关于PHP:在 if 条件下使用 $count++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20999800/

    24 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com