3

使用 Codeigniter 函数write_file(),我可以像这样写入现有文件:

write_file("path_to_file", "String four"."\n", "a+");

假设我已经有这样的文件:

String one
String two
String three

使用write_file("path_to_file", "String four"."\n", "a+"),我在第一次写入文件时有以下输出:

String one
String two
String three String four

关于如何第一次将字符串 4写入 新行的任何想法?如下图所示:

String one
String two
String three 
String four

谢谢。

4

2 回答 2

6

不太了解这个 write_file() 函数,但鉴于你所说的,这应该有效:

write_file("path_to_file", "\n"."String four"."\n", "a+")
于 2013-08-19T20:32:25.527 回答
3

尝试在字符串四之前添加新行:

write_file("path_to_file", "\nString four\n", "a+")
于 2013-08-19T20:32:17.173 回答