PHP tmpfile() 函數(shù)
PHP tmpfile() 函數(shù)

定義和用法
tmpfile() 函數(shù)以讀寫(xiě)(w+)模式創(chuàng)建一個(gè)具有唯一文件名的臨時(shí)文件。
語(yǔ)法
tmpfile()
提示和注釋
注釋?zhuān)?/b>臨時(shí)文件會(huì)在文件關(guān)閉后(用 fclose())或當(dāng)腳本結(jié)束后自動(dòng)被刪除。
提示:參見(jiàn) tempnam()。
實(shí)例
<?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);
?>
$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.

相關(guān)文章
- PHP 簡(jiǎn)介
- PHP 常量
- PHP For 循環(huán)
- PHP 命名空間 namespace
- PHP $_GET 變量
- PHP Secure E-mails
- PHP 異常處理
- PHP array_diff_assoc() 函數(shù)
- PHP array_fill_keys() 函數(shù)
- PHP array_filter() 函數(shù)
- PHP array_intersect_assoc() 函數(shù)
- PHP array_merge_recursive() 函數(shù)
- PHP array_replace() 函數(shù)
- PHP array_sum() 函數(shù)
- PHP array_walk_recursive() 函數(shù)
- PHP asort() 函數(shù)
- PHP uasort() 函數(shù)
- PHP Filter 函數(shù)
- PHP 5 Math 函數(shù)
- PHP 5 MySQLi 函數(shù)