file file_get_contents HTTP request failed
发布:smiling 来源: PHP粉丝网 添加日期:2014-08-17 17:36:28 浏览: 评论:0
我有一个问题,要求从php教程代码的url,我需要调用一个服务,使用从我的php代码的查询字符串,如果我的浏览器中键入一个网址,它工作还算可以,但如果我使用文件获取,内容()来拨打电话,我得到如下代码:
$query=file_get_contents('http://www.phpfensi.com');
echo($query);
可能出现问题有三种:
一、php.ini 的allow_url_fopen选项是不是开着的?如果是off就不能访问了,把它变成on.
二、php.ini开启了安全模式
三、机器装了防火强
其它解决方法,代码如下:
- $curl_handle=curl_init();
- curl_setopt($curl_handle, curlopt_url,'http://www.phpfensi.com');
- curl_setopt($curl_handle, curlopt_connecttimeout, 2);
- curl_setopt($curl_handle, curlopt_returntransfer, 1);
- curl_setopt($curl_handle, curlopt_useragent, 'your application name');
- $query = curl_exec($curl_handle);
- curl_close($curl_handle);
Tags: file file_get_contents HTTP
- 上一篇:简单实例php验证码代码
- 下一篇:php 排除周末与节假日程序实例代码
相关文章
- ·Warning: move_uploaded_file() [function.move-uploaded-file]: Unable to move(2013-11-29)
- ·php中魔法常量_FILE_,_LINE_,__FUNCTION__用法(2014-01-16)
- ·PHP 中$_FILES的使用及注意事项(2014-03-21)
- ·php file_get_contents读取大容量文件方法(2014-03-30)
- ·php 中file_get_contents超时问题的解决方法(2014-07-18)
- ·PHP file_get_contents采集程序开发教程详解(2014-07-21)
- ·php curl、fopen、file_get_contents实例代码(2014-08-17)
- ·php利用ExcelFileParser把excel导入数据库(2014-09-11)
- ·解决PHP中file_exists()判断中文文件名无效(2014-09-13)
- ·php中file_get_contents()导致nginx出现504(2014-09-13)
- ·php file_get_contents返回空 无效解决办法(2014-09-13)
- ·php dirname(__FILE__)与__FILE__常量的应用(2014-09-13)
- ·PHP __FILE__获取文件绝对路径用法(2014-09-18)
- ·php中file_get_contents 出现HTTP request failed! ...(2014-09-20)
- ·php提示Warning: file_get_contents(): couldn’t resolve(2014-09-20)
- ·解决PHP中file_get_contents抓取网页中文乱码问题(2014-09-21)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)