Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 274 Bytes

XmlTypeDecoder.md

File metadata and controls

15 lines (10 loc) · 274 Bytes

XmlTypeDecoder

<?php

use Chubbyphp\Deserialization\Decoder\XmlTypeDecoder;

$decoderType = new XmlTypeDecoder();

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

print_r($decoderType->decode('<name type="string">php</name>'));
// ['name' => 'php']