php_syntax_checker
php_syntax_checker copied to clipboard
Error with ; on While params
// ERROR
while ($i = 0; $i <= 1000; $i++) {
// stuf
}
// ACCEPT
$i = 0;
while($i <= 1000) {
// stuf
$i++;
}
This is aponted as error... Why?