dealfonso / sapp

Simple and Agnostic PDF Document Parser in PHP - sign PDF docs using PHP
GNU Lesser General Public License v3.0
115 stars 30 forks source link

"Headers already sent" issue with Yii2 framework #21

Closed raimon-segura closed 2 years ago

raimon-segura commented 2 years ago

Hi!,

Just a solution for "Headers already sent" issue with Yii2 framework, it only needs an exit just after the "echo":

header("Content-type:application/pdf"); header("Content-Disposition:attachment;filename=$pdf_filename"); echo $obj->to_pdf_file_s(true); exit();