如何记录访问自己网站的访客ip

可以在代码中加入

<?php
$ip=$_SERVER["REMOTE_ADDR"];
file_put_contents('ip.txt',$ip,FILE_APPEND);//建立ip.txt文件存ip
//header('Location: http://www.baidu.com/');
?>

其中header(‘Location: http://www.baidu.com/’);为运行完跳转网页,可以不要,

    原文作者:qq_45703060
    原文地址: https://blog.csdn.net/qq_45703060/article/details/103103239
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞