本文介绍了如何在PHP中回显.html文件的全部内容?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
有没有办法可以在PHP中回显.html文件的全部内容?
Is there a way I can echo the whole content of a .html file in PHP?
例如,我有一些sample.html文件,我想回显该文件名,因此应显示其内容.
For example, I have some sample.html file, and I want to echo that filename, so its content should be displayed.
推荐答案
您应使用 readfile()
:
readfile("/path/to/file");
这将读取文件,并通过一个命令将其发送到浏览器.这基本上与以下内容相同:
This will read the file and send it to the browser in one command. This is essentially the same as:
echo file_get_contents("/path/to/file");
除了 file_get_contents()
可能会导致大型文件崩溃的脚本,而readfile()
不会
这篇关于如何在PHP中回显.html文件的全部内容?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!