PHP code example of mekramy / verification-code

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

    

mekramy / verification-code example snippets


$vc = app(\MEkramy\VerificationCode\VerificationCode::class);

$vc->put('verify_email', '12345', 5); // Global
$vc->put('verify_email_for_current_ip_only', '45678', 5, false); // private

$vc->get('verify_email'); # > 12345
$vc->get('not_exists'); # > null

$vc->exists('verify_email'); # > true
$vc->exists('not_exists'); # > false

$vc->remove('verify_email');
$vc->get('verify_email'); # > null
$vc->exists('verify_email'); # > false