PHP:将数组放入文件时在$ _POST元素之间添加逗号

时间:2013-03-14 15:12:31

标签: php arrays post

以下是我的代码:

<?php
    #put the info the user just inputed into a file for later retrival
    file_put_contents("test.txt",$_POST, FILE_APPEND);
?>

这是我在test.txt中得到的结果:

  

JaneF16xyzWindows1215

如何将结果的格式更改为

  

简,F,16,XYZ,视窗,12,15

(元素之间有逗号)

1 个答案:

答案 0 :(得分:5)

将其更改为

file_put_contents('test.txt', implode(',', $_POST), FILE_APPEND);

请注意,这不考虑数组发布值的可能性。