Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x

JsonEncoder.php

Same filename in this branch
  1. 11.1.x core/modules/jsonapi/src/Encoder/JsonEncoder.php
  2. 11.1.x core/modules/serialization/src/Encoder/JsonEncoder.php

Namespace

Symfony\Component\Serializer\Encoder

File

vendor/symfony/serializer/Encoder/JsonEncoder.php

View source
<?php


/*
 * This file is part of the Symfony package.
 *
 * (c) Fabien Potencier <fabien@symfony.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
namespace Symfony\Component\Serializer\Encoder;


/**
 * Encodes JSON data.
 *
 * @author Jordi Boggiano <j.boggiano@seld.be>
 */
class JsonEncoder implements EncoderInterface, DecoderInterface {
    public const FORMAT = 'json';
    protected JsonEncode $encodingImpl;
    protected JsonDecode $decodingImpl;
    private array $defaultContext = [
        JsonDecode::ASSOCIATIVE => true,
    ];
    public function __construct(?JsonEncode $encodingImpl = null, ?JsonDecode $decodingImpl = null, array $defaultContext = []) {
        $this->defaultContext = array_merge($this->defaultContext, $defaultContext);
        $this->encodingImpl = $encodingImpl ?? new JsonEncode($this->defaultContext);
        $this->decodingImpl = $decodingImpl ?? new JsonDecode($this->defaultContext);
    }
    public function encode(mixed $data, string $format, array $context = []) : string {
        $context = array_merge($this->defaultContext, $context);
        return $this->encodingImpl
            ->encode($data, self::FORMAT, $context);
    }
    public function decode(string $data, string $format, array $context = []) : mixed {
        $context = array_merge($this->defaultContext, $context);
        return $this->decodingImpl
            ->decode($data, self::FORMAT, $context);
    }
    public function supportsEncoding(string $format) : bool {
        return self::FORMAT === $format;
    }
    public function supportsDecoding(string $format) : bool {
        return self::FORMAT === $format;
    }

}

Classes

Title Deprecated Summary
JsonEncoder Encodes JSON data.
RSS feed
Powered by Drupal