可以在while或for循环中sum variable static values
吗?我有代码并正在处理它,但sum variables
只有一次?
例如我想要这样
我需要将b values
与每个结果相加吗?
这里是我的代码
<?php
$a='10';
$b='20';
$i=0;
while($i <=10)
{
$c=$c=$a+$b;
$i++;
?>
<input type="text" value="<?php echo $c[$i] ?>" />
<?php }?>
答案 0 :(得分:1)
<?php
$a='10';
$b='20';
$c = 0;
$i=0;
while($i <=10)
{
$c=$c+$a+$b;
$sum=$c+$b;
$i++;
?>
将$c
设置为某个值,然后添加
答案 1 :(得分:0)
这是一个简单的循环
$a = '10';
$b = '20';
$c = 0;
$t = 10;
while($t --) {
printf("<input type=\"text\" value=\"%s\" />", $c += $a + $b);
}
答案 2 :(得分:0)
<?php
$a = '10';
$b = '20';
$c = '0';
$i = 0;
while ($i <= 10) {
$c = (int)$a + (int)$b + (int)$c;
//your html input element with the value of c
echo '<input type="text" value="' . $c . '" />';
$i++;
}
当$i = 0
时您的结果为10 + 20 + 0 = 30
且输入元素的值为 30
当$i = 1
结果为10 + 20 + 30 = 60
且输入元素的值为 60 时
当$i = 2
结果为10 + 20 + 60 = 90
且输入元素的值为 90 时
等...