0

以下是我的代码:

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

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

简F16xyzWindows1215

如何将结果的格式更改为

简,F,16,xyz,Windows,12,15

(元素之间有逗号)

4

1 回答 1

5

将其更改为

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

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

于 2013-03-14T15:13:24.420 回答