Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
简单的问题。我正在将条目附加到文本文件中,并且我希望将每个新条目都放在下一行。就目前而言,后续条目在最后一个之后打印。我要输入什么才能将每个条目写在新行上?使用 Windows。
$fh = fopen($dir . '/' . "Cause.txt", 'a') or die("can't open file"); fwrite($fh, $affiliation . "\n"); fclose($fh);
谢谢!
他们已经是了。使用比记事本更好的文本编辑器来查看文件,或者打印出来"\r\n"。
"\r\n"