Why no error on this code?
<?php
for ($i=0;$i<5;++$i )
{
if ($i==2)
continue
print "$i\n";
}
?>
Output is "2".
May be true must be "continue;" ?
<?php
for ($i=0;$i<5;++$i )
{
if ($i==2)
continue
print "$i\n";
}
?>
Output is "2".
May be true must be "continue;" ?
Comment