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格式数据
public function actionTest () {
\Yii:app->response->format = \yii\web\Response::FORMAT_XML;
return [
'message' => 'hello world',
'code' => 100,
];
}