PHP code example of dahaisoft / lottery

1. Go to this page and download the library: Download dahaisoft/lottery 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/ */

    

dahaisoft / lottery example snippets




use dahai\Lottery;

$list = [
    [
        'prize'=>'奖品名1', //奖品名
        'odds'=> 50, //概率
        'data' => [] //数据
    ],
    [
        'prize'=>'奖品名2',
        'odds'=> 50,
        'data' => []
    ],
];
$prize = Lottery::rock($list);