如何在php中创建我的网站的日志文件?

时间:2011-12-06 13:04:18

标签: php logging

我想知道如何在php中创建我的网站的日志文件?这有助于我维护每个用户访问过的页面数据。他们在我的网站上所做的所有行动。那么任何好友都可以帮助我吗?

感谢名单,

1 个答案:

答案 0 :(得分:26)

$file = 'people.log';
// The new person to add to the file
$person = "John Smith\n";
// Write the contents to the file, 
// using the FILE_APPEND flag to append the content to the end of the file
// and the LOCK_EX flag to prevent anyone else writing to the file at the same time
file_put_contents($file, $person, FILE_APPEND | LOCK_EX);

请参阅file_put_contents()的手册页。