简易爬虫 - base_pget
爬虫, 抓取数据.
调用http协议的API接口, 数据抓取.
例子:
<?php
$url = 'www.shopex.cn';
$http = kernel::single('base_httpclient');
$http->timeout = 6; //设置超时时间为6秒, 默认为10秒
$http->defaultChunk = 4096; //
$http->http_ver = '1.0' //发起http请求使用的http版本, 默认为1.1
$result = $http->get($url);