嘿所有我想知道爲什麼我的代碼下面僅寫了第一,但不寫第二個文件PHP編寫的txt文件寫入第一個文件,但不是第二
$counterFile = 'counter.log';
$counterFileBU = 'counterBU.log';
if(!is_writable($counterFile)) {
$count = 'WErr';
}
else {
$count = file_get_contents($counterFile);
$count++;
file_put_contents($counterFile, $count);
file_put_contents($counterFileBU, $count . ' @ ' . date("F j, Y, g:i a"));
}
任何幫助將是巨大的!
腳本執行過程中的任何警告/錯誤? –
完全沒有錯誤。 – StealthRT