我需要有效地編碼和解碼字串。最初,我轉向 Laravel 內建的加密和解密函數。當他們工作時,編碼的字串太長並且不適合我的用例,使得 URL 變得混亂並且不適合共享..
然後我嘗試了Base64編碼。它更接近我所需要的,但使其 URL 安全性增加了不必要的複雜性。由於缺乏一體化解決方案而感到沮喪,我意識到沒有一個簡單的套件可以使用可自訂且 URL 安全的方法來編碼 ID 和字串。
所以,我決定創建一個。
最初是一個 Laravel 專用工具,很快就發展成為一個獨立的套件,能夠在任何 PHP 專案中使用。此套餐提供:
此軟體包為需要輕量級但功能強大的解決方案來編碼和解碼專案中的字串和 ID 的開發人員提供了橋樑。
使用 Composer 安裝軟體套件:
composer require nassiry/laravel-encoder
use Nassiry\Encoder\Facades\Encoder; // Encode and Decode IDs $encodedId = Encoder::encodeId(12345, 4); $decodedId = Encoder::decodeId($encodedId); // Encode and Decode Strings $encodedString = Encoder::encodeString('Hello World'); $decodedString = Encoder::decodeString($encodedString);
require __DIR__ . '/vendor/autoload.php'; use Nassiry\Encoder\Encoder; // Create an encoder instance $encoder = new Encoder(); // Encode an ID $encodedId = $encoder->encodeId(12345, 4); echo "Encoded ID: $encodedId\n"; // Example output: 9FNp // Decode the encoded ID $decodedId = $encoder->decodeId($encodedId); echo "Decoded ID: $decodedId\n"; // Output: 12345
我希望這個包能像我一樣幫助簡化您的程式設計需求。
請隨時在 GitHub 上分享您的回饋或為該專案做出貢獻!
有關更多資訊和範例,請參閱 GitHub 儲存庫。
以上是為什麼我建立了在其他地方找不到的 Laravel 編碼包的詳細內容。更多資訊請關注PHP中文網其他相關文章!