news.php 289 B

123456789101112
  1. <?php
  2. /* @var $this \yii\web\View */
  3. /* @var $content string */
  4. //use yii\helpers\Html;
  5. Yii::$app->response->format = \yii\web\Response::FORMAT_RAW;
  6. Yii::$app->response->headers->set('content-type', 'application/xml;charset=utf-8');
  7. $this->beginPage();
  8. echo $content;
  9. $this->endPage();