在MVC系统中创建一个日志

时间:2012-02-05 04:25:23

标签: php model-view-controller

我在MVC系统中创建日志时遇到问题。

我的控制器访问模型并渲染视图......直到这一点为止。

现在出现了疑问 我的控制器访问博客的模型,我得到帖子的ID,数据被封装在控制器类中,我怎么能创建一个系统日志,其中包含在控制器外访问的页面的id?

谢谢

1 个答案:

答案 0 :(得分:0)

您可以将日志写入文件:

$log_file_path = "/path/log.txt";
$fh = fopen($log_file_path, 'a'); // 'a' for append to the file

$log_text = "Visited Page " . $page_id . "\n"; // This is the line to appear in the log file

fwrite($fh, $log_text);
fclose($fh); // Make sure to close the file