这就是我的数据库的样子
我的代码是
if(($rate!==NULL || $rate!=="")==true){
$count2=$count2+15;
} else if(($rate==NULL)==true){
$count2=$count2+0;
}
我的问题是它继续读取该列具有值,而它具有空白而不是空格并且也不为空。请帮帮我
答案 0 :(得分:0)
示例强>
if(!is_null($rate) || $rate != "") {
$count2 += 15;
} elseif(is_null($rate)) {
//I think you can remove this line and the elseif
//$count2 += 0;
}