Help for this page

Select Code to Download


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