PHP Basics Learning Mode

What will be the output of the following PHP code ?

<?php
for ($i = 0;$i = -1;$i = 1)
{
    print $i;
    if ($i != 1) 
    break;
}
?>