这可能sum variable static values
在while或for循环中吗?我有代码并正在处理它,但它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 }?>
<?php
$a='10';
$b='20';
$c = 0;
$i=0;
while($i <=10)
{
$c=$c+$a+$b;
$sum=$c+$b;
$i++;
?>
设置$c
为某个值,然后添加
这是一个简单的循环
$a = '10';
$b = '20';
$c = 0;
$t = 10;
while($t --) {
printf("<input type=\"text\" value=\"%s\" />", $c += $a + $b);
}
<?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
ETC...