這是我寫的測試代碼,用於獲取爲$ rectype插入到表中的值。我遇到的問題是$ rectype返回0或空。該文件確實存在,因爲我執行了類似的is_file檢查啓動,導致到編碼的這部分過程如果語句變量返回空
$dirchk1 = "/temp/files/" . $data[0] . ".doc"; // exist
$dirchk2 = "/temp/files/" . $data[1] . ".doc"; // exist
$file_1 = (is_file($dirchk1));
$file_2 = (is_file($dirchk2));
if ($file_1) {
$rectype == ($file_2 ? '3' : '1');
}
echo $rectype . "\n";
您正在通過'=='進行比較,而您想通過'='進行分配 – 2010-12-14 19:20:57