PHP code example of biohzrdmx / tokenizr-php
1. Go to this page and download the library: Download biohzrdmx/tokenizr-php 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/ */
biohzrdmx / tokenizr-php example snippets
# Import namespace
use Tokenizr\Tokenizr;
$tokenizr = new Tokenizr($salt);
$token = $tokenizr->create('something');
$valid = $tokenizr->check('something.xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx');
$data = $tokenizr->getData('something.xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx');