你可以使用PHP中的file_get_contents
函數來獲取文件內容。這個函數接受一個文件路徑作為參數,然后返回文件的內容。以下是一個簡單的示例:
$file = 'path/to/your/file.txt';
$content = file_get_contents($file);
echo $content;
你也可以通過fopen
和fread
函數來獲取文件內容,如下所示:
$file = 'path/to/your/file.txt';
$handle = fopen($file, 'r');
$content = fread($handle, filesize($file));
echo $content;
fclose($handle);
請注意,使用file_get_contents
函數更簡單和方便,適合簡單的文件讀取操作。而使用fopen
和fread
函數更適合需要更多控制和處理的復雜文件操作。