PHP 获取远程文件内容的函数代码


Posted in PHP onMarch 24, 2010

如下函数:

<? 
/** 
获取远程文件内容 
@param $url 文件http地址 
*/ 
function fopen_url($url) 
{ 
if (function_exists('file_get_contents')) { 
$file_content = @file_get_contents($url); 
} elseif (ini_get('allow_url_fopen') && ($file = @fopen($url, 'rb'))){ 
$i = 0; 
while (!feof($file) && $i++ < 1000) { 
$file_content .= strtolower(fread($file, 4096)); 
} 
fclose($file); 
} elseif (function_exists('curl_init')) { 
$curl_handle = curl_init(); 
curl_setopt($curl_handle, CURLOPT_URL, $url); 
curl_setopt($curl_handle, CURLOPT_CONNECTTIMEOUT,2); 
curl_setopt($curl_handle, CURLOPT_RETURNTRANSFER,1); 
curl_setopt($curl_handle, CURLOPT_FAILONERROR,1); 
curl_setopt($curl_handle, CURLOPT_USERAGENT, 'Trackback Spam Check'); //引用垃圾邮件检查 
$file_content = curl_exec($curl_handle); 
curl_close($curl_handle); 
} else { 
$file_content = ''; 
} 
return $file_content; 
} 
?>

相关解释:
1,ini_get : Returns the value of the configuration option as a string on success, or an empty string on failure(读取 php.ini 配置文件中的值)
2,; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
allow_url_fopen = On(配置文件中的内容)
3,fopen( "rb"): 在操作二进制文件时如果没有指定 'b' 标记,可能会碰到一些奇怪的问题,包括坏掉的图片文件以及关于 \r\n 字符的奇怪问题。
注意: 为移植性考虑,强烈建议在用 fopen() 打开文件时总是使用 'b' 标记。
注意: 再一次,为移植性考虑,强烈建议你重写那些依赖于 't' 模式的代码使其使用正确的行结束符并改成 'b' 模式。
4,strtolower -- Make a string lowercase
5,curl_init() :curl_init -- Initialize a cURL session(初始化一个cUrl会话)
resource curl_init ( [string url] )
Initializes a new session and return a cURL handle for use with the curl_setopt(), curl_exec(), and curl_close() functions.
url--If provided, the CURLOPT_URL option will be set to its value. You can manually set this using the curl_setopt() function.
Returns a cURL handle on success, FALSE on errors.
6,curl_setopt -- Set an option for a cURL transfer(提供设置)
bool curl_setopt ( resource ch, int option, mixed value )
Sets an option on the given cURL session handle. (具体请看 PHP 手册) There:
CURLOPT_URL :The URL to fetch. You can also set this when initializing a session with curl_init().
CURLOPT_CONNECTTIMEOUT :The number of seconds to wait whilst trying to connect. Use 0 to wait indefinitely.(无限期等待 设置为 0)
CURLOPT_RETURNTRANSFER :TRUE to return the transfer as a string of the return value of curl_exec() instead of outputting it out directly.
CURLOPT_FAILONERROR :TRUE to fail silently if the HTTP code returned is greater than or equal to 400. The default behavior is to return the page normally, ignoring the code.
CURLOPT_USERAGENT :The contents of the "User-Agent: " header to be used in a HTTP request.
7,curl_exec : Perform a cURL session, This function should be called after you initialize a cURL session and all the options for the session are set.
如果成功则返回 TRUE,失败则返回 FALSE。 However, if the CURLOPT_RETURNTRANSFER option is set, it will return the result on success, FALSE on failure
8,curl_close -- Close a cURL session

下面是一些参考代码:
PHP 采集程序 常用函数
PHP 采集获取指定网址的内容

PHP 相关文章推荐
第十节 抽象方法和抽象类 [10]
Oct 09 PHP
php 显示指定路径下的图片
Oct 29 PHP
php源码加密 仿微盾PHP加密专家(PHPCodeLock)
May 06 PHP
PHP下打开URL地址的几种方法小结
May 16 PHP
《PHP编程最快明白》第八讲:php启发和小结
Nov 01 PHP
抓取并下载CSS中所有图片文件的php代码
Sep 26 PHP
php curl登陆qq后获取用户信息时证书错误
Feb 03 PHP
PHP 验证登陆类分享
Mar 13 PHP
php计算一个文件大小的方法
Mar 30 PHP
php获取、检查类名、函数名、方法名的函数方法
Jun 25 PHP
Laravel timestamps 设置为unix时间戳的方法
Oct 11 PHP
php的无刷新操作实现方法分析
Feb 28 PHP
PHP中基本符号及使用方法
Mar 23 #PHP
PHP技术开发技巧分享
Mar 23 #PHP
PHP初学者常见问题集合 修正版(21问答)
Mar 23 #PHP
PHP5 字符串处理函数大全
Mar 23 #PHP
Smarty Foreach 使用说明
Mar 23 #PHP
用php或asp创建网页桌面快捷方式的代码
Mar 23 #PHP
php 无限级分类学习参考之对ecshop无限级分类的解析 带详细注释
Mar 23 #PHP
You might like
2020显卡排行榜天梯图 显卡天梯图2020年3月最新版
2020/04/02 数码科技
php图片加水印原理(超简单的实例代码)
2013/01/18 PHP
Yii实现自动加载类地图的方法
2015/04/01 PHP
微信公众平台开发(五) 天气预报功能开发
2016/12/03 PHP
如何用js控制css中的float的代码
2007/08/16 Javascript
JS中typeof与instanceof之间的区别总结
2013/11/14 Javascript
使用原生JS实现弹出层特效
2014/12/22 Javascript
微信小程序 开发指南详解
2016/09/27 Javascript
JavaScript实现自动切换图片代码
2016/10/11 Javascript
Angular.js中$apply()和$digest()的深入理解
2016/10/13 Javascript
JavaScript原生节点操作小结
2017/01/17 Javascript
js实现符合国情的日期插件详解
2017/01/19 Javascript
React+react-dropzone+node.js实现图片上传的示例代码
2017/08/23 Javascript
微信小程序 调用微信授权窗口相关问题解决
2019/07/25 Javascript
LayUI switch 开关监听 获取属性值、更改状态的方法
2019/09/21 Javascript
JS如何把字符串转换成json
2020/02/21 Javascript
[01:15:16]DOTA2-DPC中国联赛 正赛 Elephant vs Aster BO3 第一场 1月26日
2021/03/11 DOTA
Python中使用 Selenium 实现网页截图实例
2014/07/18 Python
Python使用PyGreSQL操作PostgreSQL数据库教程
2014/07/30 Python
Python中Django框架利用url来控制登录的方法
2015/07/25 Python
Python实现控制台中的进度条功能代码
2017/12/22 Python
mac 安装python网络请求包requests方法
2018/06/13 Python
python实现对指定字符串补足固定长度倍数截断输出的方法
2018/11/15 Python
python将txt文件读取为字典的示例
2018/12/22 Python
浅谈Scrapy网络爬虫框架的工作原理和数据采集
2019/02/07 Python
Python按钮的响应事件详解
2019/03/04 Python
python 解决cv2绘制中文乱码问题
2019/12/23 Python
Windows下Sqlmap环境安装教程详解
2020/08/04 Python
使用python把xmind转换成excel测试用例的实现代码
2020/10/12 Python
俄语地区最大的中国商品在线购物网站之一:Umka Mall
2019/11/03 全球购物
综合实践活动总结
2014/05/05 职场文书
弘扬雷锋精神演讲稿
2014/05/10 职场文书
泰山导游词
2015/02/02 职场文书
给校长的建议书作文500字
2015/09/14 职场文书
教师实习自我鉴定总结
2019/08/20 职场文书
Python办公自动化之教你用Python批量识别发票并录入到Excel表格中
2021/06/26 Python