文件名称:hashids.php-master整数生成唯一字符串的加密库.zip
文件大小:8KB
文件格式:ZIP
更新时间:2022-07-31 05:01:34
类库下载-hashids.php-master整数生成唯一字符串的加密库
<?php namespace Hashids; class Hashids implements HashidsInterface { const SEP_DIV = 3.5; const GUARD_DIV = 12; /** * The alphabet string. * * @var string */ protected $alphabet; /** * The seps string. * * @var string */ protected $seps = 'cfhistuCFHISTU'; /** * The guards string. * * @var string */ protected $guards;本库是让整数生成唯一字符串的加密库,可以隐藏用户ID等多种用途。
【文件预览】:
hashids.php-master整数生成唯一字符串的加密库
----php中文网下载站.url(114B)
----php中文网免费下载站.txt(219B)
----hashids.php-master()
--------composer.json(1KB)
--------LICENSE(1KB)
--------src()