Yii Phpexcel automatically generated files are saved to the server

Source: Internet
Author: User
Tags yii

Recently, the entire report task, the table must be exported every day to send mail to the administrator in Excel format, using Phpexcel to save the table to the server, and then send via Phpmailer OK.

Ob_end_clean ();
Ob_start ();
$objectPHPExcel = new Phpexcel ();
$objectPHPExcel->setactivesheetindex (0);

$objectPHPExcel->setactivesheetindex (0)->setcellvalue ("A$i", $resource->source_name);
$objectPHPExcel->setactivesheetindex (0)->setcellvalue ("b$i", $one);
$objectPHPExcel->setactivesheetindex (0)->setcellvalue ("c$i", $two);
$objectPHPExcel->setactivesheetindex (0)->setcellvalue ("d$i", $three);
$objectPHPExcel->setactivesheetindex (0)->setcellvalue ("e$i", $price);
$objectPHPExcel->setactivesheetindex (0)->setcellvalue ("F$i", $goods _price);
$objectPHPExcel->setactivesheetindex (0)->setcellvalue ("g$i", $product);
$objectPHPExcel->setactivesheetindex (0)->setcellvalue ("h$i", $count);

$filename = "C.xls";
$objWriter = Phpexcel_iofactory::createwriter ($objectPHPExcel, ' Excel5 ');
$objWriter->save ($filename);



Note that when you regenerate the generated Excel, the fopen permission error will appear when you generate it again . Help to the message, haha

Yii Phpexcel automatically generated files are saved to the server

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.