Help for this page

Select Code to Download


  1. or download this
    if ($i>1) {
       $a = function_that_may_fail();
       $i = ($a) ? $i+1 : 1;
    }
    
  2. or download this
    do { $a=function_that_may_fail(); $i= $a ? $i+1 : 1; } if ($i>1)