chubbyphp/chubbyphp-decode-encode
最新稳定版本:1.3.0
Composer 安装命令:
composer require chubbyphp/chubbyphp-decode-encode
包简介
Chubbyphp decode/encode json/jsonx/url-encoded/xml/yaml
README 文档
README
Description
A simple decode/encode solution for json / jsonx / url-encoded / xml / yaml.
Requirements
- php: ^8.3
- symfony/yaml: ^6.4.30|^7.4.1|^8.0.1
Suggest
- chubbyphp/chubbyphp-container: ^2.2
- psr/container: ^1.1.2|^2.0.2
Installation
Through Composer as chubbyphp/chubbyphp-decode-encode.
composer require chubbyphp/chubbyphp-decode-encode "^1.3"
Usage
Decoder
<?php use Chubbyphp\DecodeEncode\Decoder\Decoder; use Chubbyphp\DecodeEncode\Decoder\JsonTypeDecoder; use Chubbyphp\DecodeEncode\Decoder\JsonxTypeDecoder; use Chubbyphp\DecodeEncode\Decoder\UrlEncodedTypeDecoder; use Chubbyphp\DecodeEncode\Decoder\XmlTypeDecoder; use Chubbyphp\DecodeEncode\Decoder\YamlTypeDecoder; $decoder = new Decoder([ new JsonTypeDecoder(), new JsonxTypeDecoder(), new UrlEncodedTypeDecoder(), new XmlTypeDecoder(), new YamlTypeDecoder() ]); print_r($decoder->getContentTypes()); //[ // 'application/json', // 'application/jsonx+xml', // 'application/x-www-form-urlencoded', // 'application/xml', // 'application/x-yaml' //] print_r($decoder->decode( '{"name": "php"}', 'application/json' )); // ['name' => 'php']
Type Decoder
Encoder
Encoder
<?php use Chubbyphp\DecodeEncode\Encoder\Encoder; use Chubbyphp\DecodeEncode\Encoder\JsonTypeEncoder; use Chubbyphp\DecodeEncode\Encoder\JsonxTypeEncoder; use Chubbyphp\DecodeEncode\Encoder\UrlEncodedTypeEncoder; use Chubbyphp\DecodeEncode\Encoder\XmlTypeEncoder; use Chubbyphp\DecodeEncode\Encoder\YamlTypeEncoder; $encoder = new Encoder([ new JsonTypeEncoder(), new JsonxTypeEncoder(), new UrlEncodedTypeEncoder(), new XmlTypeEncoder(), new YamlTypeEncoder() ]); print_r($encoder->getContentTypes()); //[ // 'application/json', // 'application/jsonx+xml', // 'application/x-www-form-urlencoded', // 'application/xml', // 'application/x-yaml' //] echo $encoder->encode( ['name' => 'php'], 'application/json' ); // '{"name": "php"}'
Type Encoder
ServiceFactory
chubbyphp-laminas-config-factory
Copyright
2025 Dominik Zogg
统计信息
- 总下载量: 26.07k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 6
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-05-17