反转PHP文件()函数

我使用file()函数将.php文件转换为数组.
现在我修改了数组,我想将所有内容放回文件中(保持行尾)…
有人可以告诉我是否有一个与file()相反的函数?
我想绕过恼人的“数组到字符串转换”的方式……

提前致谢!

解决方法:

使用file_put_contents()implode()

file_put_contents('/your/file.php', implode(PHP_EOL, $fileArray));
上一篇:关于 C#脚本,error CS1010: Newline in constant 的解决方法


下一篇:Linux操作系统.在将文件内容设置为环境变量时如何保留行?