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.

返回上一级

PHP 5 函数参考手册

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.