2016-07-04 51 views

回答

0

if(!is_null($rate) || $rate != "") { 
    $count2 += 15; 
} elseif(is_null($rate)) { 
    //I think you can remove this line and the elseif 
    //$count2 += 0; 
} 
+0

空是不可靠這一點。如果'$ rate'是一個自然的'0',那麼它仍然被視爲PHP的空()。 –

+0

你說得對。謝謝我更改爲代碼!=。 –

相關問題