Condition 1
if($a == 1){
$x = 1;
}
if($b == 1){
$x = 1;
}
condition 2
if($a == 1 || $b == 1){
$x = 1;
}
Can anyone give me what si the actual difference in code memory size speed.
Condition 1
if($a == 1){
$x = 1;
}
if($b == 1){
$x = 1;
}
condition 2
if($a == 1 || $b == 1){
$x = 1;
}
Can anyone give me what si the actual difference in code memory size speed.