我使用file()函数将.php文件转换为数组.
现在我修改了数组,我想将所有内容放回文件中(保持行尾)…
有人可以告诉我是否有一个与file()相反的函数?
我想绕过恼人的“数组到字符串转换”的方式……
提前致谢!
解决方法:
使用file_put_contents()
和implode()
:
file_put_contents('/your/file.php', implode(PHP_EOL, $fileArray));
2023-08-09 23:36:22
我使用file()函数将.php文件转换为数组.
现在我修改了数组,我想将所有内容放回文件中(保持行尾)…
有人可以告诉我是否有一个与file()相反的函数?
我想绕过恼人的“数组到字符串转换”的方式……
提前致谢!
解决方法:
使用file_put_contents()
和implode()
:
file_put_contents('/your/file.php', implode(PHP_EOL, $fileArray));