I have a PHP code with a lot of single IF statements. The TO-DO's are mostly single statements that would end after a single semicolon. Currently they all have curly braces. I'd like to know if removing them would at all affect the execution speed of the code.
Compare
if( $a == $b ) {
$c++;
}
with:
if($a == $b) $c++;
The code is huge, so it would take me ages to remove them, so I thought I'd ask before spending hours on it.