将回声汇总到输出文件中

时间:2011-05-07 20:32:24

标签: php

我异步发布到一个回复​​了一些关键内容的PHP文件。我想将其所有输出写入日志文件。最简单的方法是什么?

2 个答案:

答案 0 :(得分:0)

我会使用一个简单的包装器,如http://www.redips.net/php/write-to-log-file/。您需要做的就是包含文件,实例化Logger类并设置路径。您需要在每个回声之后/之前执行记录操作。

答案 1 :(得分:0)

<?php
// Before you have any output!
ob_start();

// All of your other code, echos, etc.

// Sends the Output Buffer, also captures it in the $output variables
$output = ob_get_flush();

// Some extra info for the Logfile, so you know when and who saw it
$logPrefix = "\n\n".
             "Time: ".date( 'Y-m-d H:i:s' )."\n".
             "IP:   ".$_SERVER['REMOTE_ADDR']."\n\n";

// Write the data to the Logfile, and append it to the end (if file already exists)
file_put_contents( 'yourLogfile.txt' , $logPrefix.$output , FILE_APPEND );
?>