最新的Web開發教程
 

PHP tmpfile() Function


<完整PHP文件系統參考

定義和用法

tmpfile()函數創建與讀寫唯一名稱的臨時文件(w+)模式。

句法

tmpfile()

提示和注意

Note:當它與封閉的臨時文件被自動刪除fclose()或當腳本結束。

Tip:也見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);
?>

代碼的輸出將是:

Testing, testing.

<完整PHP文件系統參考