以下是我的代码:
<?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
(元素之间有逗号)
答案 0 :(得分:5)
将其更改为
file_put_contents('test.txt', implode(',', $_POST), FILE_APPEND);
请注意,这不考虑数组发布值的可能性。