tmpfile() 函數以讀寫(w+)模式建立一個具有唯一檔案名稱的暫存檔案。
tmpfile()
註:臨時檔案會在檔案關閉後(用fclose())或當腳本結束後自動被刪除。
提示:請參閱tempnam()。
<?php$temp = tmpfile();fwrite($temp, "Testing, testing.");//Rewind to the start of filerewind($temp);//Read 1k from fileecho fread($temp,1024); //This removes the filefclose($temp);?>
上面的程式碼將輸出:
Testing, testing.