PHP 擴充之根據數字產生唯一的字串 ID

來源:互聯網
上載者:User
本篇文章給大家分享的內容是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

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.