skeeks / yii2-xml-request-parser
Yii2 xml request parser
Installs: 26
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 4
Type:yii2-extension
Requires
- php: >=5.4.0
- yiisoft/yii2: 2.0.*
Requires (Dev)
- phpunit/phpunit: 3.7.*
This package is auto-updated.
Last update: 2024-10-29 03:58:38 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()
来获取数据。