我有這樣的代碼:PHP的fwrite功能新線
//This line is for the input that i've looped above my code, it's a URL
$textAr[$i] = str_replace("\r\n","", $textAr[$i]);
//This is for implode purposes
$finalArray = array($textAr[$i], $m1, $m2, $m3, $m4, $m5, $m6);
//When i echo this variable, $test, the URL is in the line along with the implode arrays
$test = implode($finalArray, "***");
echo $test."\n";
//This is for writing into my text file
fwrite($sitesTxt, implode($finalArray, "***")."\n");
我有那種錯誤的地方後,我輸入3個網址,第一和第二URL都有新的生產線後,我在文件中寫,但我輸入的最後一個URL與內部陣列一致。我甚至修剪了$ textArr,但我不斷收到新的內容。
預期輸出:
https://docs.google.com***false***false***false***false***false***false***
https://stackoverflow.com***false***false***false***false***false***false***
https://stackexchange.com***false***false***false***false***false***false***
輸出I在txt文件讓我:
https://docs.google.com
***false***false***false***false***false***false***
https://stackoverflow.com
***false***false***false***false***false***false***
https://stackexchange.com***false***false***false***false***false***false***
發表您的完整代碼,請(包括循環,例如數據) – vietnguyen09
你能告訴我什麼是'$ textArr [$ i]'?你可以迴應它嗎?或者只是給出示例數據 –
我的代碼是垃圾。這是爲了noobs。無論如何,我已經接受RichGold的解決方案,它爲我工作。謝謝! –