PHP tmpfile()函数
tmpfile() 函数可以在读写(w+)模式下创建一个带有唯一名称的临时文件。该函数可以返回类似于 fopen() 函数为新文件返回的文件句柄,或者在失败时返回 false。
语法
resource tmpfile ( void )
此函数可以在读写(w+)模式下创建一个具有唯一名称的临时文件,并返回一个文件句柄。在关闭文件时(例如,通过调用fclose()函数或没有其余对tmpfile()函数返回的文件句柄的引用时),或者脚本结束时,文件将自动删除。
示例
<?php
temp = tmpfile();
fwrite(temp, "Tutorialspoint!!!!");
rewind(temp); // Rewind to start of a file
echo fread(temp, 1024); // Read 1k from a file
fclose($temp); // it removes the file
?>
输出
Tutorialspoint!!!!