PHP实现查看邮件是否被阅读
Posted God is Love
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP实现查看邮件是否被阅读相关的知识,希望对你有一定的参考价值。
<?
//当你在发送邮件时,你或许很想知道该邮件是否被对方已阅读。这里有段非常有趣的代码片段能够显示对方IP地址记录阅读//的实际日期和时间。
error_reporting(0);
Header("Content-Type: image/jpeg");
//Get IP
if (!empty($_SERVER[\'HTTP_CLIENT_IP\']))
{
$ip=$_SERVER[\'HTTP_CLIENT_IP\'];
}
elseif (!empty($_SERVER[\'HTTP_X_FORWARDED_FOR\']))
{
$ip=$_SERVER[\'HTTP_X_FORWARDED_FOR\'];
}
else
{
$ip=$_SERVER[\'REMOTE_ADDR\'];
}
//Time
$actual_time = time();
$actual_day = date(\'Y.m.d\', $actual_time);
$actual_day_chart = date(\'d/m/y\', $actual_time);
$actual_hour = date(\'H:i:s\', $actual_time);
//GET Browser
$browser = $_SERVER[\'HTTP_USER_AGENT\'];
//LOG
$myFile = "log.txt";
$fh = fopen($myFile, \'a+\');
$stringData = $actual_day . \' \' . $actual_hour . \' \' . $ip . \' \' . $browser . \' \' . "\\r\\n";
fwrite($fh, $stringData);
fclose($fh);
//Generate Image (Es. dimesion is 1x1)
$newimage = ImageCreate(1,1);
$grigio = ImageColorAllocate($newimage,255,255,255);
ImageJPEG($newimage);
ImageDestroy($newimage);
?>
文章来源:刘俊涛的博客
地址:http://www.cnblogs.com/lovebing
欢迎关注,有问题一起学习欢迎留言、评论。
以上是关于PHP实现查看邮件是否被阅读的主要内容,如果未能解决你的问题,请参考以下文章