gpt4 book ai didi

php file_get_contents() 显示页面而不是 html 源代码

转载 作者:可可西里 更新时间:2023-10-31 23:52:57 24 4
gpt4 key购买 nike

我有这段代码,应该可以获取网站的源代码。

$homepage = file_get_contents('http://homepage.com');
echo $homepage;

而不是实际给我源代码..它向我展示了我试图从中获取源代码的页面。

最佳答案

使用 htmlentities 或更改内容类型。

$homepage = file_get_contents('http://homepage.com');
echo htmlentities($homepage);

header('Content-type: text/plain');
$homepage = file_get_contents('http://homepage.com/');
echo $homepage;

关于php file_get_contents() 显示页面而不是 html 源代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18838785/

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