PHP file_put_contents() 函數是一次性向文件寫入字符串或追加字符串內容的最合適選擇。 php
file_put_contents() 函數用於把字符串寫入文件,成功返回寫入到文件內數據的字節數,失敗則返回 FALSE。 數組
語法: 瀏覽器
int file_put_contents ( string filename, string data [, int flags [, resource context]] )參數說明:
參數 | 說明 |
---|---|
filename | 要寫入數據的文件名 |
data | 要寫入的數據。類型能夠是 string,array(但不能爲多維數組),或者是 stream 資源 |
flags | 可選,規定如何打開/寫入文件。可能的值:
|
context | 可選,Context是一組選項,能夠經過它修改文本屬性 |
例子: 安全
<?php echo file_put_contents("test.txt", "This is something."); ?>
運行該例子,瀏覽器輸出: 函數
18
而 test.txt 文件(與程序同目錄下)內容則爲:This is something.。 spa
當設置 flags 參數值爲 FILE_APPEND 時,表示在已有文件內容後面追加內容的方式寫入新數據: code
<?php file_put_contents("test.txt", "This is another something.", FILE_APPEND); ?>
執行程序後,test.txt 文件內容變爲:This is something.This is another something. 對象
file_put_contents() 的行爲實際上等於依次調用 fopen(),fwrite() 以及 fclose() 功能同樣。 資源