PHP中的fopen函數(shù)用于打開文件或者URL,并返回一個文件指針。它的用法如下:
fopen(filename, mode, include_path, context)
參數(shù)說明:
返回值:
示例:
$file = fopen("example.txt", "r");
if ($file) {
// 讀取文件內(nèi)容
while (($line = fgets($file)) !== false) {
echo $line;
}
fclose($file);
} else {
echo "文件打開失敗!";
}
在使用完文件后,應(yīng)使用fclose函數(shù)關(guān)閉文件指針,釋放資源。