在Php中创建临时文件

时间:2011-10-04 15:57:04

标签: php

我想知道是否可以使用php脚本创建一个临时页面。基本上我想要做的是在example.com/example/button.php上有一个文件,它将访问php脚本,并在例如example.com/example/temppage.php上创建文本。我只是需要它在temppage上说“关闭”30秒,然后它可以回到空白。

这可能吗?谢谢!

2 个答案:

答案 0 :(得分:1)

尝试tmpfile()

<?php
$temp = tmpfile();
fwrite($temp, "writing to tempfile");
fseek($temp, 0);
echo fread($temp, 1024);
fclose($temp); // this removes the file
?>

答案 1 :(得分:1)

实际上有:click!

或者如果你懒得点击:D

$temp = tmpfile();
fwrite($temp, "writing to tempfile");
fseek($temp, 0);
echo fread($temp, 1024);
fclose($temp); // this removes the file