请输入您要查询的百科知识:

 

词条 PHP tmpfile
释义

定义和用法

PHP tmpfile() 函数以读写(w+)模式建立一个具有唯一文件名的临时文件。

文件会在关闭后(用 fclose())自动被删除,或当脚本结束后。

语法

tmpfile()

提示和注释

提示:参见 tempnam()。

例子

<?php
$temp = tmpfile();
fwrite($temp, "Testing, testing.");
//倒回文件的开头 rewind($temp);
//从文件中读取 1k echo fread($temp,1024);
//删除文件 fclose($temp);
?>输出:

Testing, testing.PHP Filesystem 函数

随便看

 

百科全书收录4421916条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。

 

Copyright © 2004-2023 Cnenc.net All Rights Reserved
更新时间:2024/11/15 11:06:27