<?php/*php 檔案建立/寫入
fopen() 函式也用於建立檔案。也許有點混亂,
但是在 php 中,建立檔案所用的函式與開啟檔案的相同。
如果您用 fopen() 開啟並不存在的檔案,此函式會建立檔案,
假定檔案被開啟為寫入(w)或增加(a)。
php 寫入檔案 - fwrite()
fwrite() 函式用於寫入檔案。
fwrite() 的第乙個引數包含要寫入的檔案的檔名,
第二個引數是被寫的字串。
php 覆蓋(overwriting)
如果現在 "newfile.txt" 包含了一些資料,
我們可以展示在寫入已有檔案時發生的的事情。
所有已存在的資料會被擦除並以乙個新檔案開始。
*/header("content-type: text/html; charset=utf-8");
$myfile=fopen("testfile.txt","w")or die("unable to open file!");
$txt="bill gates \n";
fwrite($myfile,$txt
);
$txt="server jobs \n";
fwrite($myfile,$txt
);
fclose($myfile
);
$myfile1=fopen("testfile.txt","r");
while(!feof($myfile1
))
$myfile2=fopen("testfile.txt","w")or die("unable to open file!");
$txt="mickey mouse\n";
fwrite($myfile2,$txt
);
$txt="minnie mouse\n";
fwrite($myfile2,$txt
);
fclose($myfile2
);
$myfile3=fopen("testfile.txt","r");
while(!feof($myfile3
))?>
PHP 檔案建立 寫入
在本節中,我們將為您講解如何在伺服器上建立並寫入檔案。fopen 函式也用於建立檔案。也許有點混亂,但是在 php 中,建立檔案所用的函式與開啟檔案的相同。如果您用 fopen 開啟並不存在的檔案,此函式會建立檔案,假定檔案被開啟為寫入 w 或增加 a 下面的例子建立名為 testfile.txt ...
PHP 檔案寫入方法
1 fwrite fwrite 函式將內容寫入乙個開啟的檔案中。函式會在到達指定長度或讀到檔案末尾 eof 時 以先到者為準 停止執行。如果函式成功執行,則返回寫入的位元組數。如果失敗,則返回 false。語法 fwrite file,string,length 引數描述 file必需。規定要寫入的...
PHP寫入txt檔案
myfiletoread fopen txt readme.txt r or die unable to open file myfileread fread myfiletoread,20 myfiletowrite fopen txt writeme.txt a or die unable to...