<?php
//建立一個暫存檔案
$lsfile = tmpfile();
//向裡面寫入資料
$lsshuju = fwrite($lsfile, '111這裡是寫入臨時檔案的資料');
//輸出寫入情況
echo '向臨時檔案中寫入了' . $lsshuju . '個字元<br>' ;
//輸出暫存檔案的內容
$shuchu = file_get_contents($lsfile);
echo $shuchu;
//關閉暫存檔案
fclose($ lsfile);
?>
讀取內容報錯,請問如何讀取內容正確?
報什麼錯的