<?php
function test($x, $y) {
    $a = $b = $a = $y;
    var_dump($a + $x);
}
test(null, 1);
?>