在 PHP 中,可以使用 file()
函数来读取文件内容。file()
函数将整个文件读入一个字符串中。以下是一个简单的示例:
<?php
// 指定要读取的文件路径
$filename = "example.txt";
// 使用 file() 函数读取文件内容
$content = file($filename);
// 输出文件内容
echo "<pre>";
echo implode("\n", $content);
echo "</pre>";
?>
在这个示例中,我们首先指定了要读取的文件路径($filename
)。然后,我们使用 file()
函数将文件内容读入一个字符串数组中($content
)。最后,我们使用 echo
和 implode()
函数输出文件内容。
注意:file()
函数在读取大文件时可能会消耗大量内存。对于大文件,建议使用 file_get_contents()
函数或使用逐行读取的方法。