2
我寫這行:FWRITE不破
$fh = fopen('public/newsletter.txt', 'w');
foreach($entries as $row) {
fwrite($fh, 'e-mail\n');
fwrite($fh, $row->new_email . ';');
}
fclose($fh);
期待它成爲
email
[email protected];
但是我卻越來越
e-mail\[email protected];
如何解決這個?
我同意這一點。但我有一個補充:在您正在使用的操作系統上重新啓動您可能不得不考慮在Windows中使用\ r和/或\ n \ r – ITroubs 2010-10-05 15:41:10
它現在正在打印'[email protected];' – 2010-10-05 15:46:04
嘗試使用'\ r \ n'代替'\ n' – codaddict 2010-10-05 15:48:55