php fwrite函數寫入檔案(可安全用於二進位檔案),其語法為fwrite(file,string,length),參數file必需,規定要寫入的開啟文件,string 必需,規定要寫入文件的字串。
php fwrite函數怎麼用?
定義和用法
fwrite() 函數寫入檔案(可安全用於二進位)。
語法
fwrite(file,string,length)
參數
#file 必要。規定要寫入的開啟文件。
string 必需。規定要寫入文件的字串。
length 可選。規定要寫入的最大位元組數。
說明
fwrite() 把 string 的內容寫入檔案指標 file 處。如果指定了 length,當寫入了 length 個位元組或寫完了 string 以後,寫入就會停止,視乎先碰到哪種情況。
fwrite() 傳回寫入的字元數,出現錯誤時則傳回 false。
範例
<?php $file = fopen("test.txt","w"); echo fwrite($file,"Hello World. Testing!"); fclose($file); ?>
輸出:
21
以上是php fwrite函數怎麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!