Hashids 是一個能夠生成惟一的非順序的字符串 ID 號碼,它還能夠對這些 ID 進行解密,你能夠利用它來加密你不想暴露給用戶的數字 ID。
$ git clone https://github.com/cdoco/hashids.phpc.git $ cd hashids.phpc $ phpize && ./configure && make && make install
你能夠設置一些選項在 php.ini 裏,或者你也能夠在構造方法裏面設置,可是我推薦你在 php.ini 中設置,這樣你能夠擁有更好的性能。php
[hashids] extension=hashids.so //默認是空字符串 hashids.salt=cdoco //默認長度是 0 hashids.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 的版本提高了百倍左右git
$hashids = new Hashids(); $hash = $hashids->encode(1, 2, 3, 4, 5); // ADf9h9i0sQ $hash = $hashids->encode([1, 2, 3, 4, 5]); // ADf9h9i0sQ
構造方法的參數github
new Hashids(string $salt, int $min_hash_length, string $alphabet); //example new Hashids("this is salt.", 20, 'abcdefghijklmnopqrstuvwxyz');
16 進制加密和解密shell
$hashids = new Hashids(); $hash = $hashids->encodeHex('FFFFDD'); // rYKPAK $hex = $hashids->decodeHex($hash); // FFFFDD