Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2017
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. <?php
  2.  
  3. public function actionRenderBoleto()
  4. {
  5. \Yii::$app->response->format = \yii\web\Response::FORMAT_RAW;
  6. \Yii::$app->response->headers->add('content-type','application/pdf');
  7. \Yii::$app->response->data = file_get_contents('file.pdf');
  8. return \Yii::$app->response;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement