gpt4 book ai didi

php - 如何在 PHP 中回显 .html 文件的全部内容?

转载 作者:IT王子 更新时间:2023-10-29 00:50:11 24 4
gpt4 key购买 nike

有没有办法在 PHP 中回显 .html 文件的全部内容?

例如,我有一些 sample.html 文件,我想回显该文件名,因此应该显示其内容。

最佳答案

你应该使用 readfile() :

readfile("/path/to/file");

这将读取文件并通过一个命令将其发送到浏览器。这与以下内容基本相同:

echo file_get_contents("/path/to/file");

除了file_get_contents()对于大文件可能会导致脚本崩溃,而 readfile() 不会。

关于php - 如何在 PHP 中回显 .html 文件的全部内容?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9539849/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com