PHP code example of homevip / alphaid
1. Go to this page and download the library: Download homevip/alphaid 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/ */
homevip / alphaid example snippets
$AlphaID = new AlphaID();
// 多个参数
$encode = $AlphaID->encode(1, 2, 3, 4, 5); // 6lUAfVtaC6
for ($i = 0; $i < 10; $i++) {
// 加密
$encode = $AlphaID->encode($i);
// 解密
$decode = $AlphaID->decode($encode);
dump($encode, $decode);
}