Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 260 Bytes

JsonTypeDecoder.md

File metadata and controls

15 lines (10 loc) · 260 Bytes

JsonTypeDecoder

<?php

use Chubbyphp\DecodeEncode\Decoder\JsonTypeDecoder;

$decoderType = new JsonTypeDecoder();

echo $decoderType->getContentType();
// 'application/json'

print_r($decoderType->decode('{"name": "php"}'));
// ['name' => 'php']