chenkby/base62

base62加密解密

v1 2017-08-10 08:22 UTC

This package is not auto-updated.

Last update: 2024-05-17 18:40:47 UTC


README

base62加密解密

安装

添加到你的composer.json文件

"chenkby/base62": "*"

使用

加密
$code = Base62::encode('待解密文字')
解密
$string = Base62::decode($code);