如何在php中写入文件?

时间:2012-03-17 19:10:55

标签: php file-get-contents createfile

我得到的页面来源如下:

<? $txt = file_get_contents('http://stats.pingdom.com/file');
echo $txt; ?>

并将其打印在屏幕上,但说实话,我实际上想要每1分钟用它替换一个现有的html文件。 (我将每隔1分钟打开一次文件。)

我怎么能这样做?

1 个答案:

答案 0 :(得分:1)

如果您已学会使用file_get_contents(),请考虑他的姐妹函数file_put_contents()

$txt = file_get_contents('http://stats.pingdom.com/file'); 
file_put_contents('/path/to/my/file.html',$txt);

要每分钟运行一次,请查看类似cron(或在您选择的操作平台上的等效内容)