PHP code example of amestsantim / voucherator

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

    

amestsantim / voucherator example snippets



mestsantim\Voucherator\VoucherGenerator;

$v = new VoucherGenerator();
echo "Your coupon code is " . $v->letters()->length(12)->lowerCase()->generate()[0];
// Your coupon code is pxEJvcvRjwNg

$v = AmestSantim\Voucherator\VoucherGenerator();

$v->generate(10);
// ["6ae4OgTp", ...]

$v->letters()->generate(5);
// ["sVnkujCq", ...]

$v->numerals()->length(16)->generate();
// ["1734785015950957", ...]

$v->letters()->upperCase()->generate(200);
// ["JTMAZNIZDDSUGVHC", ...]

$v->numerals()->exclude('018')->generate(3);
// ["4454525224222425", ...]

$vouchers = $v->augment('#*')->generate(3);
VoucherTransformer::addPrefix($vouchers, 'ET');
// ["ET69376##4492*2736", ...]

$vouchers = $v->length(14)->generate(3);
VoucherTransformer::addSeparator(VoucherTransformer::addPrefix($voucher, 'AA'), 4, '-');
// ["AA4Z-c3pP-APDU-E4u2", ...]

$v->length(6)->numerals();
$v->generate(100)
// ["939374", ...]