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
评论前必须登录!
注册