如何在for循环外获取for循环里的值

2024-12-22 13:07:23
推荐回答(3个)
回答1:

int temp,index;
temp=0;
for(index=0;index<10;index++)
temp+=index;
后面直接调用temp的值就可以了。

回答2:

把循环里值作为参数传递到调用的函数里;
或者用全局静态变量做循环里的变量值
在循环里修改某个全局变量的值为需要的值

回答3:

第一种:
$nextdate = ‘’;
for($i=0;$i<12;$i++){
$nextdate .= date("Y-m",strtotime("- $i month")).'
';
}
echo $nextdate;

第二种,用数组。
如:
$nextdate = array();
for($i=0;$i<12;$i++){
$nextdate[] = date("Y-m",strtotime("- $i month"));
}

然后用 foreach 遍历 $nextdate