| 123456789101112131415161718192021222324 |
- <?php
- declare(strict_types=1);
- namespace App\Helpers;
- final readonly class Json
- {
- /**
- * @throws \JsonException
- */
- public static function encode(mixed $data, int $flags = 0): string
- {
- return json_encode($data, $flags | JSON_THROW_ON_ERROR | JSON_UNESCAPED_SLASHES);
- }
- /**
- * @throws \JsonException
- */
- public static function decode(string $json, int $flags = 0): mixed
- {
- return json_decode($json, true, flags: $flags | JSON_THROW_ON_ERROR);
- }
- }
|