skeeks/yii2-xml-request-parser

Yii2 xml request parser

1.0.0 2015-07-12 16:41 UTC

This package is auto-updated.

Last update: 2024-03-29 02:39:25 UTC


README

Yii2 官方只出了JsonRequestParser,但是没有 XmlRequestParser,所以就创建了这么一个库。

Install

add "bobchengbin/yii2-xml-request-parser": "*" to composer.json's require section

$ composer update

OR

$ composer require bobchengbin/yii2-xml-request-parser '*'

Usage

# file app/config/main.php
<?php

return [
    'components' => [
	'request' => [
	    'parsers' => [
		'text/xml' => 'bobchengbin\Yii2XmlRequestParser\XmlRequestParser',
                'application/xml' => 'bobchengbin\Yii2XmlRequestParser\XmlRequestParser',
	    ],
        ],
    ],
];

最终测试

然后你可以通过 postman 这种工具往你的应用发送一个 xml 的请求,然后应用那里直接通过 Yii::$app->request->post() 来获取数据。