PHP code example of bvp / purchaser

1. Go to this page and download the library: Download bvp/purchaser library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

bvp / purchaser example snippets




oatrace\Venture\Project\Purchaser;

// テレボートに5000円を入金して大村12Rの3連単(1-23-234)を購入する場合は以下の通りです。
// なお、加入者番号、暗証番号、認証用パスワード、投票用パスワードの部分は自分のテレボート会員情報に書き換えてください。
// stadiumId: 1 - 24
// raceNumber: 1 - 12
// purchaseType: 1 - 7
//   1 => 単勝, 2 => 複勝, 3 => 2連単, 4 => 2連複, 5 => 拡連複, 6 => 3連単, 7 => 3連複
Purchaser::setDepositAmount(5000)             // 入金指示金額
    ->setSubscriberNumber('xxxxxxxx')         // 加入者番号
    ->setPersonalIdentificationNumber('xxxx') // 暗証番号
    ->setAuthenticationPassword('xxxxxx')     // 認証用パスワード
    ->setPurchasePassword('xxxxxx')           // 投票用パスワード
    ->purchase(stadiumId: 24, raceNumber: 12, purchaseType: 6, forecasts: [
        '123' => '1500',                      // 組番 => 購入金額
        '124' => '1500',                      // 組番 => 購入金額
        '132' => '1000',                      // 組番 => 購入金額
        '134' => '1000',                      // 組番 => 購入金額
    ]);
bash
code example.php
bash
php example.php