程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> php file_put_contents()功能函數(集成了fopen、fwrite、fclose)

php file_put_contents()功能函數(集成了fopen、fwrite、fclose)

編輯:PHP綜合
命令:file_put_contents();
命令解析:file_put_contents (PHP 5)
file_put_contents -- 將一個字符串寫入文件
說明:
int file_put_contents ( string filename, string data [, int flags [, resource context]] )

和依次調用 fopen(),fwrite() 以及 fclose() 功能一樣。
參數 data 可以是數組(但不能為多維數組),這就相當於 file_put_contents($filename, join('', $array))
自 PHP 5.1.0 起,data 參數也可以被指定為 stream 資源,這裡 stream 中所保存的緩存數據將被寫入到指定文件中,這種用法就相似於使用 stream_copy_to_stream() 函數。
參數

filename
要被寫入數據的文件名。
data
要寫入的數據。類型可以是 string,array 或者是 stream 資源(如上面所說的那樣)。
flags
flags 可以是 FILE_USE_INCLUDE_PATH,FILE_APPEND 和/或 LOCK_EX(獲得一個獨占鎖定),然而使用 FILE_USE_INCLUDE_PATH 時要特別謹慎。
context
一個 context 資源。
寫入代碼(代碼本身無錯,但陰差陽錯學會了它的另一個功能):
復制代碼 代碼如下:
<?php
$contents = "這是使用file_put_contents寫入的內容";
$contents2 = array("這是使用","file_put_contents","命令寫入的內容");
file_put_contents("html/caceh.txt",$contents);
file_put_contents("html/cache2.txt",$contents2);
?>

代碼分析:打算使用file_put_contents命令向cache.txt,cache2.txt這兩個文件中寫入字符串。
結果:在html文件目錄內新增了caceh.txt文件,你懂了吧————
謹記:file_put_contents()函數集成了fopen(),fwrite(),fclose()三種函數,此例中新建的文件就是fopen()的功能.
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved