编程学习网 > PHP技术 > PHP中通过Hashids将整数转化为唯一字符串
2015
03-26

PHP中通过Hashids将整数转化为唯一字符串

Hashids

需要在前台隐藏 ID 的话,可以考虑使用此产品,生成的 id 比较高大上,比较像 Youtube、Youku、Weibo之类的 id 名,比如:XNjkxMTc0MDQ4

官网:http://hashids.org/php/
Laravel 5 包:https://github.com/vinkla/hashids

PHP中的简单实用示例:

$hashids = new Hashids\Hashids('this is my salt');
$id = $hashids->encode(1, 2, 3);
$numbers = $hashids->decode($id);

当然,包很全,还有 Composer package、Laravel 4 package、Laravel 5 package、CodeIgniter spark、Symfony bundle、Kohana module、Wordpress plugin、CakePHP component、Silex package、Craft plugin featu等等。在官网可以找到链接

还支持 JavaScript, Ruby, Python, Java, Scala, PHP, Perl, Swift, Objective-C, C, C++11, Go, Lua, Elixir, ColdFusion, Groovy, Kotlin, Nim, VBA, CoffeeScript and for Node.js & .NET 语言

Laravel 5 使用

使用比较简单,而且文档说明得已经比较详细了。

按文档说明安装完包后,执行

php artisan vendor:publish

操作来生成配置文件,配置文件路径:config\hashids.php:

'alphabet'=> 'your-alphabet-string'

配置项是你打算让加密后的字符串里出现什么字符,我用的是 A-Z、a-z、0-9,后来发现好像与字符顺序有关系,生成出来的随机字符串大小写与数字分布不太均匀,就使用 PHP 的 shuffle() 函数打乱一下顺序生成了一组新的 alphabet,之后看起来就比较高大上了。

使用示例:

// You can alias this in config/app.php.
use Vinkla\Hashids\Facades\Hashids;

Hashids::encode(4815162342);
// We're done here - how easy was that, it just works!

Hashids::decode('doyouthinkthatsairyourebreathingnow');
// This example is simple and there are far more methods available.

扫码二维码 获取免费视频学习资料

Python编程学习

查 看2022高级编程视频教程免费获取