1. Go to this page and download the library: Download sanchobbdo/codes 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/ */
sanchobbdo / codes example snippets
// Include composer's autoload
SanchoBBDO\Codes\CodesBuilder;
// Create a Codes instance using the CodesBuilder.
$codes = CodesBuilder::buildCodes(array(
'offset' => 100, // Start from
'limit' => 1000, // How many codes to generate
'coder' => array( // Coder settings
'secret_key' => 'secret-key', // Coder secret key
'key_length' => 4, // Code's key length
'mac_length' => 6, // Code's mac length
'algo' => 'sha1' // Hash hmac algorithm
)
));
// Validate the given code using the coder
if ($codes->getCoder()->isValid($_POST['code'])) {
// Do something on success
} else {
// Do something on failure
}
// On top of your file include rter\Writer\CsvWriter;
use SanchoBBDO\Codes\CodesSource;
$codesSource = new CodesSource($codes);
$writer = new CsvWriter('your-file.csv');
Handler::create($codesSource, $writer)->export();
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.