test4.php內容為:
「hello
world」
方式1:把檔案內容直接讀出到乙個變數裡例如$contents,型別是string,$file型別是資源控制代碼
$file=fopen('test4.php', 'r');
$contents = fread ( $file , filesize ('test4.php'));
echo substr($contents,2,3)."\n";
fclose($file);
方式2:通過判斷$file是否到達檔案末尾來一直持續輸出,$gets()函式是逐行輸出
$file=fopen('test4.php', 'r');
while (!feof($file))
fclose($file);
?>
執行結果為:
llohello
world
運用集合把文字寫入讀出檔案
1.把文字寫入檔案 從程式寫到外設 1 先構造個陣列拿來儲存 arraylistlist new arraylist list.add 迪麗熱巴 list.add 古力娜扎 list.add 馬爾扎哈 2 構造個檔案輸出流和輸出緩衝流。filewriter,bufferedreader 雖然單用fi...
學生類資料輸入讀出資料夾
include include include using namespace std class student public long num string name float score student long num 0,string name float score 0 num num...
C 寫入和讀出文字檔案
2017.07.24 class writetextfile system.io.file.writealllines c testdir test.txt lines,encoding.utf8 如果檔案不存在,則建立 存在則覆蓋 string strtest 該例子測試乙個字串寫入文字檔案。sy...