<?php
function test($a) {
    for(;$a < -2;) {
      $n % $n = $a + $a;
    }
}
test(null);
?>