Skip to content

BoatraceVentureProject/Crawler

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Crawler in the Boatrace Venture Project

Build Status codecov Latest Stable Version Latest Unstable Version License

Installation

composer require bvp/crawler

Usage

<?php

require __DIR__ . '/vendor/autoload.php';

use Boatrace\Venture\Project\Crawler;

var_dump(Crawler::program('2017-03-31')); // 2017年03月31日の出走表
var_dump(Crawler::program('2017-03-31', 24)); // 2017年03月31日 大村の出走表
var_dump(Crawler::program('2017-03-31', 24, 1)); // 2017年03月31日 大村 1Rの出走表

var_dump(Crawler::notice('2017-03-31')); // 2017年03月31日の直前情報
var_dump(Crawler::notice('2017-03-31', 24)); // 2017年03月31日 大村の直前情報
var_dump(Crawler::notice('2017-03-31', 24, 1)); // 2017年03月31日 大村 1Rの直前情報

var_dump(Crawler::result('2017-03-31')); // 2017年03月31日の結果
var_dump(Crawler::result('2017-03-31', 24)); // 2017年03月31日 大村の結果
var_dump(Crawler::result('2017-03-31', 24, 1)); // 2017年03月31日 大村 1Rの結果

var_dump(Crawler::odds('2017-03-31')); // 2017年03月31日のオッズ
var_dump(Crawler::odds('2017-03-31', 24)); // 2017年03月31日 大村のオッズ
var_dump(Crawler::odds('2017-03-31', 24, 1)); // 2017年03月31日 大村 1Rのオッズ

var_dump(Crawler::stadium('2017-03-31')); // 2017年03月31日の開催場
var_dump(Crawler::stadiumId('2017-03-31')); // 2017年03月31日の開催場
var_dump(Crawler::stadiumName('2017-03-31')); // 2017年03月31日の開催場

License

Crawler in the Boatrace Venture Project is open source software licensed under the MIT license.