PHP considers this IF statement as true although the variable equals 0 NOT 'subjob'!
echo 'start';
$my_var = 0;
//Here, the result should skip the if BUT it doesn't:
if($my_var == 'subjob'){
echo $l_job_par_type;
}
echo 'end';
die();
The last result is:
start0end
Why is that?