PHP tmpfile() 函数
PHP tmpfile() 函数以读写(w+)模式创建一个具有唯一文件名的临时文件
函数原型
tmpfile()
临时文件会在文件关闭后(用 fclose())或当脚本结束后自动被删除
参见 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);
运行以上 PHP 范例,输出结果如下
Testing, testing.