我正在为PHP中的点击计数器执行日志文件。每次用户单击按钮时的数据(日期,时间等)都指向data.json文件。我想将这些数据放在logfile.txt中但是当我使用file_get_contents时,括号和引号也会被转移,这使得日志文件更难理解。有没有办法不包括括号和引用?
$txtlog = '../Logfile-'.date('mdY').'.txt';
$mytxt = fopen($txtlog, "a") or die("<br/>Unable to open file!");
fwrite($mytxt, file_get_contents("DATA.json"));
fclose($mytxt);
答案 0 :(得分:0)
看看json_decode()
。
在你从文件中获得的内容中使用它,它将返回一个索引&#34; date&#34;和&#34;时间&#34;。只需对其进行迭代,您就可以管理日志
答案 1 :(得分:0)
使用此json_decode("DATA.json")