这是我的代码,我想附上这个文件并发送它,这些值是excel文件中的数字变量,我用它们来绘制图表它根本不起作用,我的老板生我的气,帮助
让我再解释一下。我必须附上一个excel文件{其中包含4个测试结果数字并绘制图表}我已经完成了测试我有结果,我已经完成了附件发送但我无法制作文件。
require_once '../Classes/PHPExcel.php';
$fileType = 'Excel2007';
$fileName = 'Result.xlsx';
// Read the file
$objReader = PHPExcel_IOFactory::createReader($fileType);
$objPHPExcel = $objReader->load($fileName);
// Change the file
$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, $fileType);
$objSheet = $objPHPExcel->setActiveSheetIndex(0);
objSheet->getCell('A2')->setValue($SumY );
objSheet->getCell('B2')->setValue($SumR );
objSheet->getCell('C2')->setValue($SumB );
objSheet->getCell('D2')->setValue($SumG );
// Write the file
$objWriter->save('Result.xlsx');