Site icon 时鹏亮的Blog

file_get_contents failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request 解决办法

请知悉:本文最近一次更新为 9年 前,文中内容可能已经过时。

出现这样的问题一般是因为url中有空格导致解析异常,解决办法:

$url = preg_replace("/ /", "%20", $url);

将url中的空格编码替换为UTF8的URLcode。

解决办法来自:http://stackoverflow.com/questions/4539246/


如您从本文得到了有价值的信息或帮助,请考虑扫描文末二维码捐赠和鼓励。

尊重他人劳动成果。转载请务必附上原文链接,我将感激不尽。


与《file_get_contents failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request 解决办法》相关的博文:

Exit mobile version