增加获取访问者的IP以及时间代码

在网站后台看不到访问者IP的时候可以利用该代码实现查看访问时间和访问IP,实现轻松管理网站!

截图:

代码:

    <?php
    $showtime=date("Y-m-d H:i:s");
    $fangwen = "访问者IP:";
    $fangwentime = "访问时间:";
    $ips = $_SERVER['REMOTE_ADDR'];
    $times = gmdate("H:i:s",time()+8*3600);
    $file = "ipip1.php" ;
    $fp=fopen ("ipip1.php","a") ;
    $txt= "$fangwen"."$ips"."----"."$fangwentime"."$showtime"."<br>"."\n";
    fputs($fp,$txt);
    ?>
© 版权声明
THE END
喜欢就支持一下吧
点赞9 分享
发表回复 抢沙发

请登录后发表评论

    暂无评论内容