I'm Sham
一个在通往码农道路上走走停停的行政文员

PHP-通过文件写入功能来记录日志

Sham最近发现家里ip地址每天都在自动更换,于是想到动态解析的时候,是不是可以记录下更换日志,这里就用到PHP的文件写入功能

方法一:fopen(‘文件名’,’ab+’); + fwrite(‘文件名’,’内容’);

//获取当前IP
$ipnow = (json_decode(file_get_contents("http://httpbin.org/ip"),true))['origin'];
//打开并写入
$changelogfile = fopen("ipchangelog.txt",'ab+') or die("Unable to open file!");
$ipchangelog = $ipnow.'  @  '.date('Y-m-d H:i:s').chr(10);  //chr(10)表示回车换行
fwrite($changelogfile, $ipchangelog);
fclose($changelogfile);

方法二:file_put_contents(“文件名”,’内容’,FILE_APPEND);

$ipnow = (json_decode(file_get_contents("http://httpbin.org/ip"),true))['origin'];
$ipchangelog = $ipnow.'  @  '.date('Y-m-d H:i:s').chr(10);
file_put_contents("ipchangelog.txt",$ipchangelog,FILE_APPEND);

这样,就能生成ipchangelog.txt,内容如下

121.224.159.16  @  2021-04-23 17:01:46
121.224.159.16  @  2021-04-23 17:01:47
121.224.159.16  @  2021-04-23 17:01:48
121.224.159.16  @  2021-04-23 17:01:49

赞(0) 赏杯咖啡!
未经允许不得转载:Sham@双目瞿 » PHP-通过文件写入功能来记录日志

评论 抢沙发

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

如果你觉得文章好,请赏1杯速溶咖啡给Sham吧!

微信扫一扫打赏