php curl 和 socket,PHP HTTP操作类 , 支持 Curl 和 Socket

1. 基本 get 请求:

$http = new Http(); // 实例化对象

$result = $http->get('http://www.xxx.com/comment');

2. 基本 post 请求:

$http = new Http(); // 实例化对象

$result = $http->post('http://www.xxx.com/post-new-article', array('title'=>$title, 'body'=>$body) );

3. 模拟登录 ( post 和 get 同时使用, 利用 cookie 存储状态 ) :

$http = new Http(); // 实例化对象

$http->setCookiepath(substr(md5($username), 0, 10)); // 设置 cookie, 如果是多个用户请求的话

// 提交 post 数据

$loginData = $http->post('http://www.xxx.com/sso/login.php?client=ssologin.js(v1.3.19)', array('username'=>$username, 'loginPass'=>$password) );

$result = $http->get('http://weibo.com/at/comment');

4. 利用 initialize 函数设置多个 config 信息

$httpConfig['method'] = 'GET';

$httpConfig['target'] = 'http://www.wdphp.com.com/index.html';

$httpConfig['referrer'] = 'http://www.wdphp.com.com';

$httpConfig['user_agent'] = 'My Crawler';

$httpConfig['timeout'] = '30';

$httpConfig['params'] = array('var1' => 'testvalue', 'var2' => 'somevalue');

$http = new Http();

$http->initialize($httpConfig);

$result = $http->result;

5. 复杂的设置:

$http = new Http();

$http->useCurl(false); // 不使用 curl

$http->setMethod('POST'); // 使用 POST method

// 设置 POST 数据

$http->addParam('user_name' , 'yourusername');

$http->addParam('password' , 'yourpassword');

// Referrer

$http->setReferrer('https://www.xxx.com/login');

// 开始执行请求

$http->execute('https://www.xxx.com/login/authenticate');

$result = $http->getResult();

6. 获取开启了 basic auth 的请求

$http = new Http();

// Set HTTP basic authentication realms

$http->setAuth('yourusername', 'yourpassword');

// 获取某个被保护的应用的 feed

$http->get('http://www.wdphp.com/protected/feed.xml');

$result = $http->result;

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值