chubbyphp / chubbyphp-decode-encode
Chubbyphp 解码/编码 json/jsonx/url-encoded/xml/yaml
1.1.1
2024-02-12 20:58 UTC
Requires
- php: ^8.1
- ext-dom: *
- ext-json: *
- ext-mbstring: *
- symfony/yaml: ^5.4.31|^6.3.8|^7.0
Requires (Dev)
- chubbyphp/chubbyphp-container: ^2.2
- chubbyphp/chubbyphp-dev-helper: dev-master
- chubbyphp/chubbyphp-laminas-config-factory: ^1.3
- chubbyphp/chubbyphp-mock: ^1.7.0
- infection/infection: ^0.27.8
- php-coveralls/php-coveralls: ^2.7.0
- phpstan/extension-installer: ^1.3.1
- phpstan/phpstan: ^1.10.45
- phpunit/phpunit: ^10.4.2
- psr/container: ^2.0.2
This package is auto-updated.
Last update: 2024-09-10 20:12:41 UTC
README
描述
一个简单的 json/jsonx/url-encoded/xml/yaml 解码/编码解决方案。
要求
- php: ^8.1
- symfony/yaml: ^5.4.31|^6.3.8|^7.0
建议
- chubbyphp/chubbyphp-container: ^2.1
- psr/container: ^1.1.2|^2.0.2
安装
通过 Composer 以 chubbyphp/chubbyphp-decode-encode 的形式。
composer require chubbyphp/chubbyphp-decode-encode "^1.1"
使用方法
解码器
<?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']
类型解码器
编码器
编码器
<?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"}'
类型编码器
服务工厂
chubbyphp-laminas-config-factory
版权
2024 Dominik Zogg