PHP tmpfile() º¯Êý

¶¨ÒåºÍÓ÷¨

tmpfile() º¯ÊýÒÔ¶Áд£¨w+£©Ä£Ê½½¨Á¢Ò»¸ö¾ßÓÐΨһÎļþÃûµÄÁÙʱÎļþ¡£

Îļþ»áÔڹرպó£¨Óà fclose()£©×Ô¶¯±»É¾³ý£¬»òµ±½Å±¾½áÊøºó¡£

Óï·¨

tmpfile()

ÌáʾºÍ×¢ÊÍ

Ìáʾ£º²Î¼û tempnam()¡£

Àý×Ó

<?php
$temp = tmpfile();

fwrite($temp, "Testing, testing.");

//µ¹»ØÎļþµÄ¿ªÍ·
rewind($temp);

//´ÓÎļþÖжÁÈ¡ 1k
echo fread($temp,1024);

//ɾ³ýÎļþ
fclose($temp);
?>

Êä³ö£º

Testing, testing.
VUE