当前位置:首页 > CMS教程 > 其它CMS > 列表

Yii2 输出xml格式数据的方法

发布:smiling 来源: PHP粉丝网  添加日期:2021-07-31 20:48:14 浏览: 评论:0 

这篇文章主要介绍了Yii2 输出xml格式数据的方法的相关资料,小编感觉非常具有参考价值,特此分享到脚本之家平台,供大家参考。

php中对xml的处理,虽然说实际开发中目前用的少了,但是难免会用到,用到的时候呢,总结起来还是稍稍有那么一丁点的麻烦。

我们来看看yii2中是怎么对xml进行处理的。会超乎你想象的简单哦。

我们以输出xml格式的数据为例。

既然是输出,必然就涉及到web请求与响应了,不熟悉的可以先去了解下HTTP协议。

yii2中支持以下几种返回格式,均可自定义配置。

HTML: implemented by yii\web\HtmlResponseFormatter.

XML: implemented by yii\web\XmlResponseFormatter.

JSON: implemented by yii\web\JsonResponseFormatter.

JSONP: implemented by yii\web\JsonResponseFormatter.

RAW: use this format if you want to send the response directly without applying any formatting.

我们就是冲着XML来的。

先来看一种简单的输出xml格式数据

  1. public function actionTest () {  
  2. \Yii::$app->response->format = \yii\web\Response::FORMAT_XML;  
  3. return [  
  4. 'message' => 'hello world',  
  5. 'code' => 100,  
  6. ];  

这里我们指定了reponse响应格式 FORMAT_XML,然后访问这个test方法就可以看到页面上输出了xml类型的数据

  1. <response>  
  2. <message>hello world</message>  
  3. <code>100</code>  
  4. </response> 

上面提到的方式未免有点麻烦,麻烦在配置多项的时候就不是那么方便了,我们来自己创建reponse对象试一试

  1. public function actionTest () {  
  2. return \Yii::createObject([  
  3. 'class' => 'yii\web\Response',  
  4. 'format' => \yii\web\Response::FORMAT_XML,  
  5. 'formatters' => [  
  6. \yii\web\Response::FORMAT_XML => [  
  7. 'class' => 'yii\web\XmlResponseFormatter',  
  8. 'rootTag' => 'urlset'//根节点  
  9. 'itemTag' => 'url'//单元  
  10. ],  
  11. ],  
  12. 'data' => [ //要输出的数据  
  13. [  
  14. 'loc' => 'http://********',  
  15. ],  
  16. ],  
  17. ]);  

为了方便接下来的说明,上面一并做了配置,可以看到我们配置了响应的格式format,单独做了些配置,包括配置根节点rootTag,单元itemTag以及数据类型,有同学注意到了,这里其实我们很简单的就实现了一个站点地图的xml格式输出,是的,就是这么简单。

Tags: Yii2输出xml

分享到: