<?php
function test() {
    $a = null;
    for ($i = 0; $i < 6; $i++) {
        var_dump($a);
        $a = $a + $a = +$a = $b;
    }
}
test();
?>