PHP code example of linkprofit-cpa / chance

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

    

linkprofit-cpa / chance example snippets


// Получить шанс в одной пятой случаев
$chance = new Chance(new Ratio(5));

// Получить шанс в 25%
$chance = new Chance(new Percent(25));

if ($chance->get()) {
    ...
}