PHP接受IF语句虽然它是错误的

时间:2016-02-21 17:12:10

标签: php

PHP将此IF语句视为true,尽管变量等于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();

最后的结果是:

start0end

为什么?

0 个答案:

没有答案