How to choose location to save file excel with PHPExcel

52,727

Solution 1

If you include below headers to your php file. Your users will have a download option pop-up:

header("Pragma: public");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Content-Type: application/force-download");
header("Content-Type: application/octet-stream");
header("Content-Type: application/download");;
header("Content-Disposition: attachment;filename=$filename");
header("Content-Transfer-Encoding: binary ");

Solution 2

Change the file name to desired path i.e,

$name = '/path/to/folder/xyz.xlsx';
$objWriter->save($name);

It Works For Me...

Solution 3

$objWriter->save($filename);

.... change the value of $filename to be the filepath for wherever you want to save the file, e.g.

$filename = '/path/to/folder/test.xlsx';
$objWriter->save($filename);
Share:
52,727
Tam Vo
Author by

Tam Vo

Updated on July 09, 2022

Comments

  • Tam Vo
    Tam Vo almost 2 years

    I have a problem when using PHPExcel to create a excel file. I want to choose location to save file excel but I don't know how do it.

     $model = new User();
     $labels = $model->attributeNames();
     $data = $model->findAll();
     $objPHPExcel = Yii::app()->excel;
    
    ........
    $filename = 'text.xlsx';
    $objWriter = new PHPExcel_Writer_Excel2007($objPHPExcel);
    $objWriter->save($filename);
    

    Please help me. thank you so much.