light/yii2-xmlparser

yii2 xml 请求解析器

0.2.11 2015-08-15 16:07 UTC

This package is auto-updated.

Last update: 2024-09-08 19:47:26 UTC


README

Build Status version Download Issues

概述

这是一个帮助您处理 XML 请求的库。众所周知,Yii2 为类似 JSON 的请求提供了内置请求解析器 yii\web\JsonParser。有时,我们需要处理 XML 请求,因此产生了这个库。

安装

light/yii2-xmlparser 添加到 composer.json 中,您可以将版本指定为 *

$ composer install
//or run
$ composer update

我们还可以这样做

$ composer require light/yii2-xmlparser=* --prefer-dist

用法

# file app/config/main.php [your configuration file]
<?php

return [
    'components' => [
    'request' => [
        'parsers' => [
	        	'text/xml' => 'light\yii2\XmlParser',
	            'application/xml' => 'light\yii2\XmlParser',
	        ],
        ],
    ],
];

测试

$ phpunit

许可证

MIT