最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
php中file_get_contents 出现HTTP request failed! ...
时间:2022-06-25 13:31:13 编辑:袖梨 来源:一聚教程网
在做一个接口的时候,使用file_get_contents出现 HTTP request failed! HTTP/1.1 505 HTTP Version Not Supported error。查了一下手册,
Note: 如果要打开有特殊字符的 URL (比如说有空格),就需要使用 urlencode() 进行 URL 编码。
切记,对中文一定要进行先编码后使用
例子
代码如下 | 复制代码 |
$body = file_get_contents('http://www.111com.net'); |
这样是没有问题了,如果我们路径中带有中文或空格就不行了
代码如下 | 复制代码 |
$body = file_get_contents('http://www.111com.net/ 中国地址.html'); |
这样就会提示HTTP request failed! HTTP/1.1 505 HTTP Version Not Supported error
解决办法
代码如下 | 复制代码 |
$body = file_get_contents(urlencode('http://www.111com.net/ 中国地址.html')); |
这样就显示正常了哦。
相关文章
- 《燕云十六声》红尘无眼完成图文攻略 12-25
- 《燕云十六声》阴阳如影完成图文攻略 12-25
- 《燕云十六声》悬檐之下四架椽屋图文攻略 12-25
- 《燕云十六声》2024最新公测时间介绍 12-25
- 《燕云十六声》有没有藏宝阁 12-25
- 《燕云十六声》制作公司介绍 12-25