file_get_contents()
是 PHP 中的一個(gè)內(nèi)置函數(shù),用于將整個(gè)文件讀入一個(gè)字符串
example.txt
的文件,其中包含一些文本內(nèi)容。file_get_contents()
函數(shù)讀取文件。這里是一個(gè)簡(jiǎn)單的示例:<?php
// 指定要讀取的文件名
$filename = "example.txt";
// 使用 file_get_contents() 函數(shù)讀取文件
$content = file_get_contents($filename);
// 檢查是否成功讀取文件
if ($content !== false) {
// 輸出文件內(nèi)容
echo "File content: <br>" . htmlspecialchars($content);
} else {
// 如果無法讀取文件,顯示錯(cuò)誤消息
echo "Error reading the file.";
}
?>
example.txt
文件的內(nèi)容被輸出。注意:確保 PHP 腳本具有讀取目標(biāo)文件的適當(dāng)權(quán)限。根據(jù)服務(wù)器配置和安全設(shè)置,這可能需要額外的配置。