gpt4 book ai didi

php - 跟踪 For 循环的最后一个

转载 作者:行者123 更新时间:2023-11-29 17:12:59 28 4
gpt4 key购买 nike

我正在学习 PHP。我在我的一个 php 函数中使用了如下所示的 for 循环。

$numbers = $data["data"];
for ($i = 0;$i < count($numbers);$i++) {
$w->send($numbers[$i]);
}

我想检查是否是最后一个号码,我需要睡一会并想调用另一个函数。我不知道该怎么办。谁能建议我该怎么做?谢谢

最佳答案

$numbers = $data["data"];
for ($i = 0,$c=count($numbers);$i < $c;$i++) {
$w->send($numbers[$i]);
if($i==$c-1){
sleep(60);
//call your function here;
}
}

关于php - 跟踪 For 循环的最后一个,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51797176/

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