Home  >  Article  >  Backend Development  >  如何将一个PHP数组有格式的写入文件中

如何将一个PHP数组有格式的写入文件中

WBOY
WBOYOriginal
2016-06-06 20:51:281021browse

如何将 array( k1 => v1, k2 => v2 ) 这个数组写入一个文件,文件里面的内容和下面这种格式基本一致:

array(
k1 => v1,
k2 => v2
)

不要和我说一行行写,有没有快捷一点的方法?

回复内容:

如何将 array( k1 => v1, k2 => v2 ) 这个数组写入一个文件,文件里面的内容和下面这种格式基本一致:

array(
k1 => v1,
k2 => v2
)

不要和我说一行行写,有没有快捷一点的方法?

file_put_contents('result.txt', var_export($categories,true));

好吧,我自己搞定了。。

这样也行,file_put_contents('result.txt', print_r($categories, true));或者这样error_log(print_r($categories, true), 3, 'result.txt');或者...好多吧。

var_export出来不是这个格式吧~~~
应该用print_r

file_put_contents('filename.txt', print_r( array( $k1 => $v1, $k2 => $v2 ) );
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn