Log user ip address, date and time

前端 未结 5 520
别跟我提以往
别跟我提以往 2020-12-24 15:32

Is there a simple script or piece of code I can add to my page to keep a log of every visitor, the date and time they hit the page and IP address? And what would be the bes

5条回答
  •  心在旅途
    2020-12-24 16:25

    $line = date('Y-m-d H:i:s') . " - $_SERVER[REMOTE_ADDR]";
    file_put_contents('visitors.log', $line . PHP_EOL, FILE_APPEND);
    

    Consider also logging $_SERVER['REQUEST_URI'] or other interesting information, possibly in a more standard format as outlined by @Day.

提交回复
热议问题