cagartner
1/23/2017 - 12:48 PM

How to show files on bronwer with Yii2

How to show files on bronwer with Yii2

<?php

public function actionRenderBoleto()
{
    \Yii::$app->response->format = \yii\web\Response::FORMAT_RAW;
    \Yii::$app->response->headers->add('content-type','application/pdf');
    \Yii::$app->response->data = file_get_contents('file.pdf');
    return \Yii::$app->response;
}