gpt4 book ai didi

php - file_get_contents,HTTP 请求失败

转载 作者:行者123 更新时间:2023-12-02 08:35:18 25 4
gpt4 key购买 nike

我尝试使用 file_get_contents 从另一个站点获取内容,但我总是收到“无法打开流:HTTP 请求失败!” allow_url_fopen 已打开,我已经在关闭防火墙的情况下进行了测试。但是还是会发生,还能是什么原因呢?

编辑:这是完整的消息警告:file_get_contents(http://yemto.deviantart.com/):无法打开流:HTTP 请求失败!在 D:\xampp\htdocs\deviantart\webcam\img.php 第 15 行

和代码

//Load the page into a DOMDocument
$file = file_get_contents(strToLower("http://".$user.".deviantart.com/"));//TO-DO <-- if deivantart name is empty, it crashes
$doc = new DOMDocument();
@$doc -> loadHTML($file);

最佳答案

如果客户端不发送 User-Agent header ,您的网络服务器会立即关闭连接。尝试向您的 php.ini 添加一个 user_agent 选项,或者输入:

ini_set('user_agent', 'PHP');

在你的脚本中。

关于php - file_get_contents,HTTP 请求失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22314753/

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