## 2019-9-19
1、直播采集调用方法:
```
引入:use collect\Live;
/**
* Name:getBroadcast
* @return array
* Describe:获取直播封面和地址
* Time: 2019/11/19 17:10
* User:
*/
例子:
<?php
namespace app\api\controller;
use collect\Live;
class Searchtest
{
public function index(){
$live=new Live();
$data=$live->getBroadcast();
var_dump($data);
}
}
```
2、图片采集调用方法:
```
引入:use collect\Image;
/**
* Name:getImage
* @param int $limit 条数
* @param int $page 第几页
* @return array
* Describe:采集图片
* Time: 2019/11/19 17:16
* User:
*/
例子:
<?php
namespace app\api\controller;
use collect\Image;
class Searchtest
{
public function index(){
$image=new Image();
$data=$image->getImage(3,1);
var_dump($data);
}
}
```
3、期料采集调用方法:
```
/**
引入:use collect\PhaseInformation;
* Name:getPhaseInformation
* @param int $sid 第几期(1代表当前期,2代表上一期,以次类推)
* @return array
* Describe:采集期料
* Time: 2019/11/19 17:19
* User:
*/
列子:
<?php
namespace app\api\controller;
use collect\PhaseInformation;
class Searchtest
{
public function index(){
$phaseInformation=new PhaseInformation(1);
$data=$phaseInformation->getPhaseInformation();
var_dump($data);
}
}
```
4、资料采集调用方法:
```
/**
引入:use collect\Materail;
* Name:getMaterial
* @param int $classid (心水资料:10
文字资料:11
高手资料:7
公式资料:12
精品杀项:13
香港挂牌资料:67
全年资料:14
六合属性:83
默认栏目:19
)
* @param int $limit 条数
* @param int $page 第几页
* @return array
* Describe:采集栏目资料
* Time: 2019/11/19 17:21
* User:
*/
例子:
<?php
namespace app\api\controller;
use collect\Materail;
class Searchtest
{
public function index(){
$data=$material->getMaterial(83,3,4);
var_dump($data);
}
}
```
5、开奖记录采集方法:
```
/**
引入:use collect\LotteryRecord;
* Name:getLotteryRecord
* @param $que ['dateid'=>2019,'periods'=>[50,60,71]]
* @return array
* Describe:获取开奖记录
* Time: 2019/11/22 16:32
* User:
*/
例子:
use collect\LotteryRecord;
class Searchtest
{
public function index(){
$lotteryRecord=new LotteryRecord();
$data=$lotteryRecord->getLotteryRecord(['dateid'=>2019,'periods'=>[50,60]]);
var_dump($data);
}
}
```