每次運行此代碼時,只有"Not from a"
會被寫入,無論該位置是否爲「a」。帶條件語句的問題
function logsIn($dir, $account, $balance) {
$d = date("D F d Y - h:i A");
$file = fopen("logs/$dir.txt", "a");
if ($_SESSION['pass'] == "123") {
if ($api["Location"] != "a")
fwrite($file, "<span style='color:#FF0000;text-align:center';>Not from a.</span>");
else
fwrite($file, "From a.");
}
檢查您使用的每個變量的值,並將其值與您的預期值進行比較。基本調試。 –
'location'是「a」還是'Location'是「a」? – Mat
順便說一下,我還建議您在'$ _SESSION'上擺脫那個「神條件」。 –