php_syntax_checker icon indicating copy to clipboard operation
php_syntax_checker copied to clipboard

Error with ; on While params

Open raank opened this issue 6 years ago • 0 comments

// ERROR
while ($i = 0; $i <= 1000; $i++) {
	// stuf
}


// ACCEPT
$i = 0;
while($i <= 1000) {
	// stuf
	$i++;
}

This is aponted as error... Why?

raank avatar Apr 26 '18 12:04 raank