标签: php http fopen
这个php代码会导致重定向循环:
<?php echo "TEST"; $file = fopen('test.txt', 'a'); $now = new \DateTime(); fwrite($file, $now->format('c') . "\n"); fclose($file);
以某种方式fwrite导致页面刷新......
为什么会这样?如何在没有页面刷新的情况下写入文件?