本篇文章給大家分享的內容是PHP 擴充之根據數字產生唯一的字串 ID ,有著一定的參考價值,有需要的朋友可以參考一下
Hashids 是一個可以產生唯一的非順序的字串 識別碼,它還可以對這些 ID 進行解密,你可以利用它來加密你不想暴露給使用者的數字 ID。
安裝
$ git clone https://github.com/cdoco/hashids.phpc.git$ cd hashids.phpc$ phpize && ./configure && make && make install
你可以設定一些選項在 php.ini 裡,或者你也可以在構造方法裡面設定,但是我推薦你在 php.ini 中設定,這樣你可以擁有更好的效能。
[hashids]extension=hashids.so//預設是Null 字元串hashids.salt=cdoco//預設長度是 0hashids.min_hash_length=20//預設是 abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890//你可以自己設定它,比如你使用全部小寫字元hashids.alphabet=abcdefghijklmnopqrstuvwxyz
快速開始
$hashids = new Hashids();$hash = $hashids->encode(1, 2, 3, 4, 5); // ADf9h9i0sQ$numbers = $hashids->decode($hash); // [1, 2, 3, 4, 5]//或者你可以用靜態方法調用$hash = Hashids::encode(1, 2, 3, 4, 5); // ADf9h9i0sQ$numbers = Hashids::decode($hash); // [1, 2, 3, 4, 5]
效能
原來有純 php 代碼實現的一個功能,現在把它封裝成了一個 php 擴充,效能比純 php 的版本提升了百倍左右
其他
$hashids = new Hashids();$hash = $hashids->encode(1, 2, 3, 4, 5); // ADf9h9i0sQ$hash = $hashids->encode([1, 2, 3, 4, 5]); // ADf9h9i0sQ
構造方法的參數
new Hashids(string $salt, int $min_hash_length, string $alphabet);//examplenew Hashids("this is salt.", 20, 'abcdefghijklmnopqrstuvwxyz');
16 進位加密和解密
$hashids = new Hashids();$hash = $hashids->encodeHex('FFFFDD'); // rYKPAK$hex = $hashids->decodeHex($hash); // FFFFDD