PHP中的tmpfile()函数是一个内置函数,用于以读写(w +)模式创建具有唯一名称的临时文件。当使用fclose()关闭或没有剩余的文件句柄引用时,使用tmpfile()函数创建的文件将自动删除。该脚本的末尾还会导致删除使用tmpfile()函数创建的临时文件。对于新文件,tmpfile()函数不带任何参数,它返回的文件句柄类似于fopen()返回的文件句柄,否则返回FALSE。
用法:
tmpfile()
返回值:
成功时返回新文件的文件句柄,失败则返回FALSE。
错误和异常:
- 使用fclose()关闭临时文件或脚本结束后,该临时文件将自动删除。
- tmpfile()函数返回布尔值False,但是很多时候它返回一个非布尔值,该值的值为False。
例子:
Input : $temp_pointer = tmpfile(); fwrite($temp_pointer, 'temporary data'); fclose(temp_pointer); Output : 1 Input : $temp_pointer = tmpfile(); fwrite($temp_pointer, "GeeksforGeeks"); echo fread($temp_pointer, 2048); fclose($temp); Output : Geeksforgeeks
以下示例程序旨在说明tmpfile()函数。
程序1:
<?php
// PHP program to illustarte tmpfile( ) Function
$temp_pointer = tmpfile();
// Write on temporary file
fwrite($temp_pointer, 'temporary data');
// This removes the file
fclose(temp_pointer);
?>
输出:
1
程序2:
<?php
// PHP program to illustarte tmpfile( ) Function
$temp_pointer = tmpfile();
// Write on temporary file
fwrite($temp_pointer, "GeeksforGeeks");
// Read 2k from file
echo fread($temp_pointer, 2048);
// This removes the file
fclose($temp_pointer);
?>
输出:
GeeksforGeeks
参考:
http://php.net/manual/en/function.tmpfile.php
相关用法
- p5.js sq()用法及代码示例
- PHP next()用法及代码示例
- PHP each()用法及代码示例
- d3.js d3.map.has()用法及代码示例
- p5.js second()用法及代码示例
- d3.js d3.map.set()用法及代码示例
- p5.js day()用法及代码示例
- CSS var()用法及代码示例
- p5.js pow()用法及代码示例
- PHP pow( )用法及代码示例
- PHP pi( )用法及代码示例
- p5.js hex()用法及代码示例
注:本文由纯净天空筛选整理自Shubrodeep Banerjee大神的英文原创作品 PHP | tmpfile() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。