PHP code example of atelierdisko / coupon_code
1. Go to this page and download the library: Download atelierdisko/coupon_code 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/ */
atelierdisko / coupon_code example snippets
use CouponCode\CouponCode;
$code = new CouponCode();
$result = $code->generate();
// returns a string in `XXXX-XXXX-XXXX` format i.e.
// `1K7Q-CTFM-LMTC`.
$code->validate($result);
// returns a boolean indicating if the code is valid.
$code->normalize('i9oD_V467-8Dsz');
// returns `190D-V467-8D52`