如何修改此代码以将 IP 地址记录到另一个文件
请查看下面的简单 php 网页代码,
如何修改我的代码,以便在我的服务器上创建一个日志文件,记录每个访问者的 ip 以及是否成功重定向到正确的页面。类似的事情。
<?php
$a = $_SERVER['REMOTE_ADDR'];
if ( $a == "117.96.112.122" )
{
header("Location: ad_sams_mobile.html");
return true;
}
else
{
header("Location: ad_other_mobile.html");
return true;
}
?>
please look at the simple php webpage code below
how can modify my code so that a log file is created on my server which logs each visitor's ip and whether it was successfully redirected to the correct page . something like that.
<?php
$a = $_SERVER['REMOTE_ADDR'];
if ( $a == "117.96.112.122" )
{
header("Location: ad_sams_mobile.html");
return true;
}
else
{
header("Location: ad_other_mobile.html");
return true;
}
?>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
请参阅 PHP 函数 file_put_contents。您需要使用附加标志:
See the PHP function file_put_contents. You'll need to use the append flag:
Apache access.log 应该包含您需要的所有信息。
您所要做的就是解析它。
The Apache access.log should have all the information you need.
All you have to do is parse it.
像这样的东西:
Something like this:
或者 IP 日志记录:
Or this for IP logging: