如何通过forloop增加动态值

时间:2016-01-15 15:12:54

标签: php

我作为php开发人员工作,我想保留一个选择框字段为full或price。我想从10000开始价格并以15000000结束。我想要增加我的价值,如(10000,20000,30000 ....)这个我试过,

try {
    annundefinedmethod();
}
catch (Error $e) {
    //$e->getMessage() == "Call to undefined function annundefinedmethod()"
}

为此我得到了(20000,30001,40002 ......)。 如何解决这个问题,请任何人帮忙

1 个答案:

答案 0 :(得分:1)

你将它递增两次。进入for循环($ sal ++),然后再循环开始。如果你想将它增加10000,请将其置于循环条件下。

<?php for($sal = $minsale; $sal <= $maxsale; $sal+=10000) {
?>

为了能够更改增量,请使用您稍后可以更改的变量:

<?php 
  $inc = 100000;
  for($sal = $minsale; $sal <= $maxsale; $sal+=$inc) {

      if($sal >= 100000) { // set this to whatever number you want
          $inc = 25000;
      }
?>