<完全な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ファイルシステムリファレンス