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