Board logo

標題: 6-3-3 將資料寫入檔案 [打印本頁]

作者: 小誌    時間: 2011-4-19 18:48     標題: 6-3-3 將資料寫入檔案

6-3-3   將資料寫入檔案
要將資料寫入檔案最簡單了,直接使用fwrite()或fputs()函數就行了:
fwrite() 與fputs()函數格式
  1. int fwrite ( resource handle, string string [, int length])
  2. int fputs ( resource handle, string string [, int length])
複製代碼
fwrite()與fputs()函數格式都一樣,使用的方式當然也都一樣,筆者是比較喜歡fwrite()函式啦!例如:
  1. <?
  2. $myfile="writetest1.txt";
  3. $word="我是被寫入的資料";

  4.     $file=fopen($myfile,"w");
  5.    fwrite($file,$word);
  6. ?>
複製代碼
如果沒設定寫入長度參數,代表要將全部的資料都寫入到檔案中,若指定長度參數,則寫入的資料就只有我們所指定的長度資料:
  1. <?
  2. $myfile="writetest1.txt";
  3. $word="我是被寫入的資料";

  4.     $file=fopen($myfile,"w");
  5.    fwrite($file,$word,4); //檔案內只有”我是”
  6. ?>
複製代碼





歡迎光臨 麻辣家族討論版版 (http://forum.twbts.com/)