- 浏览: 386661 次
- 性别:
- 来自: 深圳
文章分类
最新评论
-
zjx20:
...
非阻塞(nonblock)socket接口会否出现EINTR错误 -
mrfeng:
Digest 方式呢?
构建RESTful Web Service - 验证的实现和使用(HTTP 基本认证) -
lck140:
lck140 写道我照着楼主的方法试了一天了,根本就不行。是不 ...
nginx 预压缩(gzip)静态文件 -
lck140:
我照着楼主的方法试了一天了,根本就不行。是不是有哪没弄好,请高 ...
nginx 预压缩(gzip)静态文件 -
iwlk:
chrome 是支持gzip的, 只是添加了sdch~ 大家 ...
nginx 预压缩(gzip)静态文件
cURL是一个可以在命令行下发起http请求的工具,phpl有调用ibcurl的适配器(adapter),所以在php里可以很方便的使用这个工具。
在使用cURL的过程中是否觉得难以使用,选项太多,没有封装,使用不够方便?
为了方便使用,我对php的cURL进行了二次封装,基于组合模式,使用灵活,能满足多数应用场景,经过我长期的实践。
实际上Curl_Manager并没有开发到心目中理想的样子,但并不妨碍使用,仅供各位参考:)
测试例子:
支持cookie:
带参数请求,get/post/put/delete等等使用方式一样
Curl_Manager代码,也可以从附件下载:
在使用cURL的过程中是否觉得难以使用,选项太多,没有封装,使用不够方便?
为了方便使用,我对php的cURL进行了二次封装,基于组合模式,使用灵活,能满足多数应用场景,经过我长期的实践。
- 支持 ssl/proxy
- 支持 cookie,会记录所有请求的cookie并带上(如需获得cookie的值,需要自己解析)
- 支持常见请求方法get/post/put/delete 等等RESTFul所需要的方法
- 支持文件上传
- 支持返回http报文和报头
- 支持带cookie的follow location(如果使用curl_setopt($this->_ch, CURLOPT_FOLLOWLOCATION, true);cookie并不会自动带上)
- 解决cURL请求lighttpd会产生417 Expectation Failed错误的问题
实际上Curl_Manager并没有开发到心目中理想的样子,但并不妨碍使用,仅供各位参考:)
测试例子:
<?php require_once("Curl_Manager.php"); $manager = new Curl_Manager(); $manager->set_action('gg', 'http://www.google.com/', 'http://willko.iteye.com/');//设置动作,(动作名称, 动作对应url,来源referer) $manager->open()->get('gg'); //打开一个请求,进行get操作 echo $manager->body(); // 获得报文 echo $manager->header(); // 获得报头(需要自己解析) //发起ssl请求 $manager->set_action('taobao', 'https://login.taobao.com/member/login.jhtml?f=top&redirectURL=http://www.taobao.com/', 'http://willko.iteye.com/'); $manager->ssl()->get('taobao'); //使用ssl方法,让当前这个请求支持ssl请求 echo $manager->body(); echo $manager->header();
支持cookie:
$manager->cookie();
带参数请求,get/post/put/delete等等使用方式一样
$manager->post('action', array('k' => 'v', 'a' => 'b')); $manager->post('action', 'k=v&a=b'); $manager->post('action', array('k' => 'v', '@a' => '/home/www/avatar.gif')); //上传,需要使用绝对路径,参数名称加"@"。
Curl_Manager代码,也可以从附件下载:
<?php // +----------------------------------------------------------------------+ // | Copyright (c) 2008-2010 Willko Cheng | // +----------------------------------------------------------------------+ // | Authors: Willko Cheng <willko@foxmail.com> | // | Blog: http://willko.iteye.com/ | // +----------------------------------------------------------------------+ class Curl_Manager { private $_is_temp_cookie = false; private $_header; private $_body; private $_ch; private $_proxy; private $_proxy_port; private $_proxy_type = 'HTTP'; // or SOCKS5 private $_proxy_auth = 'BASIC'; // or NTLM private $_proxy_user; private $_proxy_pass; protected $_cookie; protected $_options; protected $_url = array (); protected $_referer = array (); public function __construct($options = array()) { $defaults = array (); $defaults ['timeout'] = 30; $defaults ['temp_root'] = sys_get_temp_dir (); $defaults ['user_agent'] = 'Mozilla/5.0 (Windows; U; Windows NT 6.0; zh-CN; rv:1.8.1.20) Gecko/20081217 Firefox/2.0.0.20'; $this->_options = array_merge ( $defaults, $options ); } public function open() { $this->_ch = curl_init (); //curl_setopt($this->_ch, CURLOPT_FOLLOWLOCATION, true); curl_setopt ( $this->_ch, CURLOPT_HEADER, true ); curl_setopt ( $this->_ch, CURLOPT_RETURNTRANSFER, true ); curl_setopt ( $this->_ch, CURLOPT_USERAGENT, $this->_options ['user_agent'] ); curl_setopt ( $this->_ch, CURLOPT_CONNECTTIMEOUT, $this->_options ['timeout'] ); curl_setopt ( $this->_ch, CURLOPT_HTTPHEADER, array('Expect:') ); // for lighttpd 417 Expectation Failed $this->_header = ''; $this->_body = ''; return $this; } public function close() { if (is_resource ( $this->_ch )) { curl_close ( $this->_ch ); } if (isset ( $this->_cookie ) && $this->_is_temp_cookie && is_file ( $this->_cookie )) { unlink ( $this->_cookie ); } } public function cookie() { if (! isset ( $this->_cookie )) { if (! empty ( $this->_cookie ) && $this->_is_temp_cookie && is_file ( $this->_cookie )) { unlink ( $this->_cookie ); } $this->_cookie = tempnam ( $this->_options ['temp_root'], 'curl_manager_cookie_' ); $this->_is_temp_cookie = true; } curl_setopt ( $this->_ch, CURLOPT_COOKIEJAR, $this->_cookie ); curl_setopt ( $this->_ch, CURLOPT_COOKIEFILE, $this->_cookie ); return $this; } public function ssl() { curl_setopt ( $this->_ch, CURLOPT_SSL_VERIFYPEER, false ); return $this; } public function proxy($host = null, $port = null, $type = null, $user = null, $pass = null, $auth = null) { $this->_proxy = isset ( $host ) ? $host : $this->_proxy; $this->_proxy_port = isset ( $port ) ? $port : $this->_proxy_port; $this->_proxy_type = isset ( $type ) ? $type : $this->_proxy_type; $this->_proxy_auth = isset ( $auth ) ? $auth : $this->_proxy_auth; $this->_proxy_user = isset ( $user ) ? $user : $this->_proxy_user; $this->_proxy_pass = isset ( $pass ) ? $pass : $this->_proxy_pass; if (! empty ( $this->_proxy )) { curl_setopt ( $this->_ch, CURLOPT_PROXYTYPE, $this->_proxy_type == 'HTTP' ? CURLPROXY_HTTP : CURLPROXY_SOCKS5 ); curl_setopt ( $this->_ch, CURLOPT_PROXY, $this->_proxy ); curl_setopt ( $this->_ch, CURLOPT_PROXYPORT, $this->_proxy_port ); } if (! empty ( $this->_proxy_user )) { curl_setopt ( $this->_ch, CURLOPT_PROXYAUTH, $this->_proxy_auth == 'BASIC' ? CURLAUTH_BASIC : CURLAUTH_NTLM ); curl_setopt ( $this->_ch, CURLOPT_PROXYUSERPWD, "[{$this->_proxy_user}]:[{$this->_proxy_pass}]" ); } return $this; } public function post($action, $query = array()) { if (is_array($query)) { foreach ($query as $key => $val) { if ($val{0} != '@') { $encode_key = urlencode($key); if ($encode_key != $key) { unset($query[$key]); } $query[$encode_key] = urlencode($val); } } } curl_setopt ( $this->_ch, CURLOPT_POST, true ); curl_setopt ( $this->_ch, CURLOPT_URL, $this->_url [$action] ); curl_setopt ( $this->_ch, CURLOPT_REFERER, $this->_referer [$action] ); curl_setopt ( $this->_ch, CURLOPT_POSTFIELDS, $query ); $this->_requrest (); return $this; } public function get($action, $query = array()) { $url = $this->_url [$action]; if (! empty ( $query )) { $url .= strpos ( $url, '?' ) === false ? '?' : '&'; $url .= is_array ( $query ) ? http_build_query ( $query ) : $query; } curl_setopt ( $this->_ch, CURLOPT_URL, $url ); curl_setopt ( $this->_ch, CURLOPT_REFERER, $this->_referer [$action] ); $this->_requrest (); return $this; } public function put($action, $query = array()) { curl_setopt ( $this->_ch, CURLOPT_CUSTOMREQUEST, 'PUT' ); return $this->post ( $action, $query ); } public function delete($action, $query = array()) { curl_setopt ( $this->_ch, CURLOPT_CUSTOMREQUEST, 'DELETE' ); return $this->post ( $action, $query ); } public function head($action, $query = array()) { curl_setopt ( $this->_ch, CURLOPT_CUSTOMREQUEST, 'HEAD' ); return $this->post ( $action, $query ); } public function options($action, $query = array()) { curl_setopt ( $this->_ch, CURLOPT_CUSTOMREQUEST, 'OPTIONS' ); return $this->post ( $action, $query ); } public function trace($action, $query = array()) { curl_setopt ( $this->_ch, CURLOPT_CUSTOMREQUEST, 'TRACE' ); return $this->post ( $action, $query ); } public function connect() { } public function follow_location() { preg_match ( '#Location:\s*(.+)#i', $this->header (), $match ); if (isset ( $match [1] )) { $this->set_action ( 'auto_location_gateway', $match [1], $this->effective_url () ); $this->get ( 'auto_location_gateway' )->follow_location (); } return $this; } public function set_action($action, $url, $referer = '') { $this->_url [$action] = $url; $this->_referer [$action] = $referer; return $this; } public function header() { return $this->_header; } public function body() { return $this->_body; } public function effective_url() { return curl_getinfo ( $this->_ch, CURLINFO_EFFECTIVE_URL ); } public function http_code() { return curl_getinfo($this->_ch, CURLINFO_HTTP_CODE); } private function _requrest() { $response = curl_exec ( $this->_ch ); $errno = curl_errno ( $this->_ch ); if ($errno > 0) { throw new Curl_Manager_Exception ( curl_error ( $this->_ch ), $errno ); } $header_size = curl_getinfo ( $this->_ch, CURLINFO_HEADER_SIZE ); $this->_header = substr ( $response, 0, $header_size ); $this->_body = substr ( $response, $header_size ); } public function __destruct() { $this->close (); } } class Curl_Manager_Exception extends Exception { }
- Curl_Manager.rar (2.1 KB)
- 下载次数: 273
发表评论
-
PHP实时输出报文到浏览器
2010-06-06 15:09 8045Yahoo的前端优化实践中 ... -
PHP多Web服务器的Session问题
2010-05-11 21:30 0当Web服务器有多台的时候,会遇到一个Session共享不共享 ... -
构建RESTful Web Service - 验证的实现和使用(HTTP 基本认证)
2010-04-07 11:40 15868因为RESTful的无状态特性,导致无法知道当前的请求方是否可 ... -
也谈谈PHP是否需要模板机制?
2010-03-30 19:37 0最近有点时间,重温了一下设计模式,设计模式和OO真令人费解,博 ... -
很好的序列化方式 Igbinary
2009-11-21 19:29 0如果你使用PHP做开发,那有些时候需要序列化PHP数据,不管是 ... -
10进制和64进制相互转换 php版
2009-11-05 11:28 7047使用:表示10以及使用;表示11的原因是根据ascii的排列来 ... -
使用HTML Purifier解决XSS问题
2009-09-23 22:33 12480在php里解决XSS最简单的方法是使用htmlspecialc ... -
php里json_decode无法解析的情况,返回空(null)
2009-08-04 21:08 31513我的版本是5.2.x,php的json解析也太烂了,兼容性太差 ... -
激动人心的 APC 新特性
2009-07-27 23:22 1828来自facebook的大牛在OSCON2009上分享了APC的 ... -
php-fpm配置文件中文文档
2009-06-29 09:30 0配置文件 这个php-fpm.conf文件, 可 ... -
一次查询完成基于“父id"的无限分类
2009-06-25 18:00 3167无限分类谈得太多了,无非三种方法“路径”“左右值”“父id”, ... -
我看php 5.3 的新特性
2009-03-13 23:34 6574从php4到php5,从个人框 ... -
php 实现简单 sso 初步方案
2009-02-24 18:37 4947首先,声明一点,sso和任何语言没有关系,因为我只懂php,为 ... -
feed设计
2009-02-21 23:46 5320对于sns来说,动态就是 ... -
PHP-FPM高负载技巧 (PHP-FPM on highload tips)
2009-02-15 23:18 8493只供参考,英语不好,多多练习。。 这些技巧都比较基本的。。 ... -
Tokyo Tyrant 在 php 上不能自动反序列化解决方法
2009-02-15 02:11 7583Tokyo Tyrant使用memcached协议连接,但是用 ... -
FYI:初学php时写的php邮件发送类
2009-02-08 11:28 2472<?php /** * 功能: 发送邮件 ... -
PHP 加密/解密函数 dencrypt(动态密文,带压缩功能,支持中文)
2009-02-08 10:39 8578// +------------------------- ... -
discuz 经典php加密解密函数 authcode 解析
2009-02-08 10:38 11533康盛的 authcode 函数可以说对中国的PHP界作出了重大 ... -
求相对路径的函数
2009-02-08 10:36 2514网上某面试题, 写一个函数,算出两个文件的相对路径 如 $a ...
相关推荐
8. **关闭连接**:为了释放系统资源,封装类会有一个关闭cURL会话的方法,对应cURL的`curl_close()`函数。 9. **重用连接**:如果需要进行多个相似的请求,封装类可能会实现连接池或重用机制,以减少建立新连接的...
如果你需要编译自定义版本的`curl`或者进行二次开发,这些源代码会非常有用。 7. **packages**: 可能包含了针对不同操作系统的安装包,便于在AIX 7.1上安装`curl`。 8. **docs**: 文档目录,可能包含了更详细的...
项目中自己使用的时候,自己封装的类库,请大家多多指教
ios编译COCOS2DX时,有些版本会出现以下错误,'__curl_rule_01__' declared as an array with a negative size 只需把所有的.h文件替换掉引擎的,再把libcurl.a添加到工程中,即可解决这问题
std::cerr << "curl_easy_perform() failed: " << curl_easy_strerror(res) ; curl_easy_cleanup(curl); } curl_global_cleanup(); return 0; } ``` 在上面的代码中,我们向`worldtimeapi.org`发送了一个...
curl-curl-7_47_1.zip
curl_global_init(CURL_GLOBAL_DEFAULT); curl = curl_easy_init(); if(curl) { curl_easy_setopt(curl, CURLOPT_URL, "http://example.com/large_file"); curl_easy_setopt(curl, CURLOPT_PROGRESSFUNCTION, ...
一个linux下的web后面测试工具,本机安装有vs2015, MingGW, cygWin,如果解压后不能正常使用可能与以上...如果在 path中加入exe的目录后,可以直接在 cmd中输入curl --hlep查看,否则需要在运行目录下有curl.exe程序。
这个压缩包包含了一个名为“基于php curl库封装的http类库”的PHP类库,它将PHP内置的cURL库进行了高级封装,以提供更加简洁和灵活的HTTP请求接口。 PHP的cURL库是一个功能丰富的库,用于在各种协议(包括HTTP、...
总结,`WWW-Curl-4.17.tar` 提供了一个方便的 Perl 模块,它封装了强大的 `curl` 功能,使 Perl 开发者能够轻松处理网络请求。无论是简单的数据获取还是复杂的网络交互,`WWW::Curl` 都能提供必要的支持。
5. **自定义请求选项**:尽管YurunHttp已经封装了很多常用功能,但仍然允许开发者自定义cURL的选项,以满足特殊需求。这使得类库具有很好的灵活性和可扩展性。 6. **重试机制**:为了应对网络不稳定的情况,...
- CURL库支持多线程,可以同时处理多个请求,使用`curl_multi_init()`和`curl_multi_add_handle()`等函数进行管理。 通过Curl.zip中的DEMO,我们可以看到这些概念如何在实际代码中体现,学习如何将CURL库有效地...
在PHP项目中,`curl_vendor` 可能是一个已经预先配置好的类库,通过Composer安装。开发者只需引入相应的命名空间,然后创建对象,调用方法即可执行HTTP请求。例如,可能有如下的API: ```php use Vendor\Curl; $c ...
在ESP32_curl_example-master.zip文件中,我们预计会找到以下内容: 1. `CMakeLists.txt`:这是CMake构建系统的配置文件,用于编译libcurl及其示例代码。CMake是一个跨平台的自动化构建系统,能帮助管理和构建不同...
`php-httplib`的源码软件结构清晰,便于自定义扩展和二次开发。例如,你可以通过继承`HttpClient`,实现自己的特定逻辑,或者添加新的功能。 总的来说,`php-httplib`是PHP开发中的一款强大且实用的工具,它将cURL...
**WWW-Curl-4.15.tar - 关于curl、www-curl 和 Perl 的知识** 在互联网编程中,`curl` 是一个强大的命令行工具,用于传输数据到或从服务器,支持多种协议如HTTP、HTTPS、FTP、FTPS等。`curl` 的存在使得开发者可以...
**CURL多线程类库详解** CURL(Client URL Library)是PHP中一个非常重要的库,用于处理HTTP和其他协议的请求。它提供了丰富的选项来定制各种网络交互,包括HTTP头、POST数据、代理设置等。当面临大量HTTP请求或者...
- **libcurl**: curl的核心库,提供了一整套接口供应用程序调用,处理各种网络协议。 - **多路复用**: curl-7_53_1支持HTTP/1.1的管道和HTTP/2的多路复用,能有效利用网络带宽,提高请求处理速度。 - **SSL/TLS...
`curl-master.zip_curl_curl-master_curlconfig-d`这个文件名表明这是一个关于curl源码仓库的压缩包,可能包含了curl的源代码、配置文件以及与`curlconfig-d`相关的文件。 `curl-master`通常指的是curl项目的主分支...
XML_CURL模块是Freeswitch中的一部分,它允许通过CURL库从远程服务器获取或发送XML数据,从而实现动态配置和控制。这对于自动化管理和扩展Freeswitch系统非常有用。 1. **XML_CURL模块的原理** XML_CURL模块利用了...