php中可利用file_get_contents()函數將檔案轉換成字串,它可將檔案的內容讀取到一個字串中,語法「file_get_contents(file,include_path,context,start,maxlen) 」。
本教學操作環境:windows7系統、PHP7.1版,DELL G3電腦
在php中,可以利用file_get_contents()函數來將檔案轉換成字串。
file_get_contents() 函數可以將檔案的內容讀取到字串中,函數的語法格式如下:
file_get_contents(file,include_path,context,start,maxlen)
參數說明如下:
注意:file_get_contents() 函數執行失敗時,可能會傳回 Boolean 類型的 FALSE,也可能傳回一個非布林值(如空白字元)。所以一般使用===
運算子測試此函數的回傳值。
範例:
有這麼一個文字文件,內容為:<?php header("Content-type:text/html;charset=utf-8"); $file = 'test.txt'; $filestr = file_get_contents($file); if ($filestr) { echo $filestr; } else { echo '失败!'; } ?>
以上是php檔案怎麼轉換成字串的詳細內容。更多資訊請關注PHP中文網其他相關文章!