在PHP中,可以使用file_get_contents()
函數來獲取文件的內容。該函數接受一個文件路徑作為參數,并返回文件的內容。
例如,以下代碼將讀取文件"example.txt"的內容并輸出到屏幕上:
$content = file_get_contents("example.txt");
echo $content;
另外,也可以使用fopen()
和fread()
函數來讀取文件內容,具體代碼如下:
$handle = fopen("example.txt", "r");
if ($handle) {
$content = fread($handle, filesize("example.txt"));
fclose($handle);
echo $content;
}
請注意,在使用fopen()
和fread()
函數時,需要在最后記得關閉文件句柄,以避免資源泄漏問題。