(PHP 3>= 3.0.13, PHP 4 )
以写模式建立一个具有唯一文件名的临时文件,返回一个与 fopen() 所返回相似的文件句柄。文件会在关闭后(用 fclose())自动被删除,或当脚本结束后。
详细信息请参考系统手册中的 tmpfile(3) 函数,以及 stdio.h 头文件。
例子 1. tmpfile() 例子
<?php$temp = tmpfile();fwrite($temp, "writing to tempfile");fclose($temp); // this removes the file?>
参见 tempnam()。