PHP code example of bayfrontmedia / leaky-bucket

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

    

bayfrontmedia / leaky-bucket example snippets


$contents = $bucket->get();

echo $bucket->getCapacity();

echo $bucket->getCapacityUsed();

echo $bucket->getCapacityRemaining();

echo $bucket->getLeakPerSecond();

echo $bucket->getSecondsPerDrop();

echo $bucket->getSecondsPerDrop();

echo $bucket->getSecondsUntilEmpty();

echo $bucket->getLastTime();