PHP file_put_contents新行问题

前端之家收集整理的这篇文章主要介绍了PHP file_put_contents新行问题前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我无法在新行中将数组写入文本文件.我的代码
echo '<pre>';
print_r($final_result);
echo '</pre>';

输出

Array

(
    [0] => Something1
    [1] => Something2
    [2] => Something3
)

然后:

file_put_contents($file,trim($final_result . "\n"),FILE_APPEND);

输出

Something1Something2Something3Array

我的目标是:

Something1
Something2
Something3

有任何想法吗? 原文链接:https://www.f2er.com/php/134599.html

猜你在找的PHP相关文章