最新的Web开发教程
 

PHP tmpfile() Function


<完整PHP文件系统参考

定义和用法

tmpfile()函数创建与读写唯一名称的临时文件(w+)模式。

句法

tmpfile()

提示和注意

Note:当它与封闭的临时文件被自动删除fclose()或当脚本结束。

Tip:也见tempnam()


<?php
$temp = tmpfile();

fwrite($temp, "Testing, testing.");
//Rewind to the start of file
rewind($temp);
//Read 1k from file
echo fread($temp,1024);

//This removes the file
fclose($temp);
?>

代码的输出将是:

Testing, testing.

<完整PHP文件系统参考