我正在研究Symfony 2.1中的一个项目.PHPExcel版本是1.8.0。我使用Doctrine从Db中检索数据并根据需要进行过滤。
$em = $this->getDoctrine()->getManager();
$guardquery = $em->createQueryBuilder()
->select('g.attendancePopupTime', 'd.atmName', 'd.region', 'd.zone', 'd.state')
->from('ATMMonitorAPIBundle:GuardMonitor', 'g')
->innerJoin('ATMMonitorAPIBundle:DeviceAtmInfo', 'd', Join::WITH, 'd.deviceId = g.deviceId');
if ($userZones[0]['userZones'] != '0') {
$guardquery->innerJoin('ATMMonitorAPIBundle:RegisteredDevices', 'r', Join::WITH, 'r.deviceId = g.deviceId')
->where('r.deviceZone IN (:devicezone)')
->setParameter('devicezone', $zone_array);
}
if (isset($dateLow)) {
$guardquery->andWhere('g.attendancePopupTime BETWEEN :date_low and :date_high')
->setParameter('date_low', $dateLow)
->setParameter('date_high', $dateHigh);
}
$finalAttendanceQuery = $guardquery->getQuery();
$attendanceResult = $finalAttendanceQuery->getArrayResult();
这是我的查询,通过将变量作为2014-12-1作为$ dateLow和2014-12-8作为$ dateHigh,查询返回122行。数据库中有579行。过滤后返回的数据是正确的,我可以使用以下代码将其插入Excel。
$phpExcelObject = $this->get('phpexcel')->createPHPExcelObject();
$phpExcelObject->getProperties()->setCreator("")
->setLastModifiedBy("Administrator")
->setTitle("ATTENDANCE DETAILS XLSX")
->setSubject("ATTENDANCE DETAILS XLSX")
->setDescription("EXCEL document for Attendance Details");
$phpExcelObject->setActiveSheetIndex(0);
$phpExcelObject->getActiveSheet()->setTitle('GUARD_ATTENDANCE - DETAILS');
$phpExcelObject->getActiveSheet()
->SetCellValue('A3', "STATE")
->SetCellValue('B3', "ZONE")
->SetCellValue('C3', "REGION")
->SetCellValue('D3', "DATE")
->SetCellValue('A1', "GUARD ATTENDANCE RECORDS");
$count = count($attendanceResult);
$rowCount = 4;
for ($i = 0; $i < $count; $i++) {
$phpExcelObject->getActiveSheet()->SetCellValue('A' . $rowCount, $attendanceResult[$i]['state']);
$phpExcelObject->getActiveSheet()->SetCellValue('B' . $rowCount, $attendanceResult[$i]['zone']);
$phpExcelObject->getActiveSheet()->SetCellValue('C' . $rowCount, $attendanceResult[$i]['region']);
if ($attendanceResult[$i]['attendancePopupTime'] instanceof \DateTime) {
$attendanceDate = $attendanceResult[$i]['attendancePopupTime']->format('d-m-Y');
}
$phpExcelObject->getActiveSheet()->SetCellValue('D' . $rowCount, $punchTime);
$phpExcelObject->getActiveSheet()->SetCellValue('E' . $rowCount, count($attendanceResult));
$rowCount++
}
$writer = $this->get('phpexcel')->createWriter($phpExcelObject, 'Excel5');
$response = $this->get('phpexcel')->createStreamedResponse($writer);
$response->headers->set('Content-Type', 'text/vnd.ms-excel; charset=utf-8');
$response->headers->set('Content-Disposition', 'attachment;filename=AttendanceDetails.xls');
$response->headers->set('Pragma', 'public');
$response->headers->set('Cache-Control', 'maxage=1');
return $response;
在进入for循环之前,变量$ count的值为122。在生成的excel中,有579行(DB中可用的整个数据)而不是过滤后获得的122行。 excel的列E也显示值579而不是122. for循环也执行579次而不是122次。一些如何,数组$ attendanceResult在phpExcel中插入数据时会发生变化。
我尝试将$ attendanceResult的内容保存到另一个数组中,并使用该数组将数据插入到Excel中。那里也存在同样的问题。 请帮忙,因为我发现代码没有任何问题。谢谢你提前
答案 0 :(得分:1)
对于您和正在PHP中寻求Excel导出实现的人
您可以使用其建议最好的替代方法 -Php电子表格(Phpspreadsheet documentation)
答案 1 :(得分:0)
&#34;数据被正确过滤,我得到了过滤后的数组,但是当数组导出到phpexcel时数组会发生变化 - &#34;
在调试或var_dump之前,不要假设它已正确过滤。做出假设对你或我们没有帮助,你所说的根本不可能。 PS:帖子所有者已经回答了这个问题。
答案 2 :(得分:0)
$phpExcelObject->getActiveSheet()->setCellValueExplicit('A'.$row_count,$row['Value'], PHPExcel_Cell_DataType::TYPE_STRING);
尝试将上述代码用于错误的人口行,并将您的Excel格式更改为.xlsx。你可以使用phpExcel做到这一点。