Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以下是我的代码:
<?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
(元素之间有逗号)
将其更改为
file_put_contents('test.txt', implode(',', $_POST), FILE_APPEND);
请注意,这不考虑数组 post 值的可能性。