How to create log file of my web site in php? [clo

2019-06-20 13:51发布

I want to know how to create log file of my web site in php? Which help me to maintain data about Pages visited by each user & all actions they done in my website. So any buddy can help me?

Thanx,

标签: php logging
1条回答
太酷不给撩
2楼-- · 2019-06-20 14:14
$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);

Please see the manual page for file_put_contents().

查看更多
登录 后发表回答