例如我們要操作的檔案是demo.txt
一種方式是
$file = fopen('demo.txt','a');
$content = 'xxxxxxxx';
fwrite($file ,$content);
fclose($file);
有時檔案寫入寫出比較頻繁,防止寫入失敗,可以使用
flock($file,LOCK_EX);
flock($file,LOCK_UN) ;
另一種方式
使用file_put_contents();
if(file_exists('demo.txt')){
$fp = 'deno.txt' ;
$fcontent = $str."rn";
file_put_contents($fp,$fcontent,FILE_APPEND | LOCK_EX);
} }
需要注意的是要寫入的文件路徑是絕對路徑,可以運用__FILE__取得
版權聲明:本文為博主原創文章,未經博主允許不得轉載。