Php/func filesystem tmpfile
来自菜鸟教程
PHP tmpfile()函数
例
以读写(w +)模式创建一个具有唯一名称的临时文件:
<?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.
定义和用法
tmpfile()函数以读写(w +)模式创建一个具有唯一名称的临时文件。
注意: 在关闭时,使用fclose()或脚本结束时,将自动删除该文件。
Tip: 另请参阅 tempnam()
功能。
句法
tmpfile()
技术细节
返回值: | 文件句柄(类似于新文件的fopen()返回的句柄),失败时为FALSE |
PHP版本: | 4.0+ |