public function actionMy()
{
Yii::$app->response->format = Response::FORMAT_XML;
return ['...'];
}
'response' => [
'formatters' => [
'xml' => [
'class' => '\yii\web\XmlResponseFormatter',
]
],
],
Yii::$app->response->formatters[Response::FORMAT_XML]['rootTag'] = 'products';
Yii::$app->response->formatters[Response::FORMAT_XML]['itemTag'] = 'product';