0

这可能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 }?>
4

3 回答 3

1
<?php 
$a='10';
$b='20';
$c = 0;
$i=0;
while($i <=10)
{
$c=$c+$a+$b;
$sum=$c+$b;
$i++;
?>

设置$c为某个值,然后添加

于 2013-06-05T20:05:31.093 回答
0

这是一个简单的循环

$a = '10';
$b = '20';
$c = 0;
$t = 10;
while($t --) {
    printf("<input type=\"text\" value=\"%s\" />", $c += $a + $b);
}
于 2013-06-05T20:04:43.590 回答
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

ETC...

于 2013-06-05T20:08:35.777 回答