lcobucci /jose-parsing
此包已废弃,不再维护。未建议替代包。
基本的Base64Url和JSON编码/解码实现
3.0.0
2020-05-22 12:42 UTC
Requires
- php: ^7.4 || ^8.0
- ext-json: *
Requires (Dev)
- infection/infection: ^0.16
- lcobucci/coding-standard: ^4.0
- phpstan/extension-installer: ^1.0
- phpstan/phpstan: ^0.12
- phpstan/phpstan-deprecation-rules: ^0.12
- phpstan/phpstan-phpunit: ^0.12
- phpstan/phpstan-strict-rules: ^0.12
- phpunit/phpunit: ^9.1
This package is auto-updated.
Last update: 2020-12-15 08:52:39 UTC
README
Base64Url和JSON编码/解码实现。
安装
该包可在 Packagist 上找到,您可以使用 Composer 安装它。
composer require lcobucci/jose-parsing
使用方法
您可能不需要直接依赖此库。然而,您可以使用其base64url和JSON(附带一些额外验证)的编码/解码功能。
编码
use Lcobucci\Jose\Parsing\Parser; $bilboQuote = "It’s a dangerous business, Frodo, going out your door. You step " . "onto the road, and if you don't keep your feet, there’s no knowing " . "where you might be swept off to."; $encoder = new Parser(); echo $encoder->jsonEncode(['testing' => 'test']); // {"testing":"test"} echo $encoder->base64UrlEncode($bilboQuote); /* That quote is used in RFC 7520 example (in UTF-8 encoding, sure), and the output is (line breaks added for readbility): SXTigJlzIGEgZGFuZ2Vyb3VzIGJ1c2luZXNzLCBGcm9kbywgZ29pbmcgb3V0IHlvdXIgZG9vci4gWW 91IHN0ZXAgb250byB0aGUgcm9hZCwgYW5kIGlmIHlvdSBkb24ndCBrZWVwIHlvdXIgZmVldCwgdGhl cmXigJlzIG5vIGtub3dpbmcgd2hlcmUgeW91IG1pZ2h0IGJlIHN3ZXB0IG9mZiB0by4 */
解码
use Lcobucci\Jose\Parsing\Parser; $bilboQuote = "SXTigJlzIGEgZGFuZ2Vyb3VzIGJ1c2luZXNzLCBGcm9kbywgZ29pbmcgb3V0IHlvdXIgZG9vci4gWW" . "91IHN0ZXAgb250byB0aGUgcm9hZCwgYW5kIGlmIHlvdSBkb24ndCBrZWVwIHlvdXIgZmVldCwgdGhl" . "cmXigJlzIG5vIGtub3dpbmcgd2hlcmUgeW91IG1pZ2h0IGJlIHN3ZXB0IG9mZiB0by4"; $decoder = new Parser(); var_dump($decoder->jsonDecode('{"testing":"test"}')); // object(stdClass)#1 (1) { ["testing"] => string(4) "test" } echo $decoder->base64UrlDecode($bilboQuote); /* The output would be the same as the quote used in previous example: "It’s a dangerous business, Frodo, going out your door. You step " "onto the road, and if you don't keep your feet, there’s no knowing " "where you might be swept off to." */