fopen函數(shù)用于打開(kāi)一個(gè)文件或者URL,并返回一個(gè)文件句柄,以便對(duì)文件進(jìn)行讀寫(xiě)操作。其語(yǔ)法如下:
fopen ( string $filename , string $mode [, bool $use_include_path = FALSE [, resource $context ]] ) : resource|FALSE
其中,$filename
表示要打開(kāi)的文件或者URL的路徑,$mode
表示打開(kāi)文件的模式,$use_include_path
為可選參數(shù),表示是否在 include_path 中搜索文件,$context
為可選參數(shù),表示文件句柄的上下文。
$mode
參數(shù)有以下幾種取值:
示例代碼:
$handle = fopen("example.txt", "r");
if ($handle) {
// 讀取文件內(nèi)容
$content = fread($handle, filesize("example.txt"));
echo $content;
// 關(guān)閉文件句柄
fclose($handle);
} else {
echo "無(wú)法打開(kāi)文件";
}