fork download
<?php
    $x = 12;
    $y = 12 + $x++;
    echo "y = $y x = $x";
?>
    
Success #stdin #stdout 0.02s 25636KB
stdin
Standard input is empty
stdout
y = 24 x = 13