1)) { $inputFileNames = array(); for($i = 1; $i < $argc; ++$i) { $inputFileNames[] = __DIR__ . '/templates/' . $argv[$i]; } } else { $inputFileNames = glob($inputFileNames); } foreach($inputFileNames as $inputFileName) { $inputFileNameShort = basename($inputFileName); if (!file_exists($inputFileName)) { echo date('H:i:s') , " File " , $inputFileNameShort , ' does not exist' , PHP_EOL; continue; } echo date('H:i:s') , " Load Test from $inputFileType file " , $inputFileNameShort , PHP_EOL; $objReader = PHPExcel_IOFactory::createReader($inputFileType); $objReader->setIncludeCharts(TRUE); $objPHPExcel = $objReader->load($inputFileName); echo date('H:i:s') , " Iterate worksheets looking at the charts" , PHP_EOL; foreach ($objPHPExcel->getWorksheetIterator() as $worksheet) { $sheetName = $worksheet->getTitle(); echo 'Worksheet: ' , $sheetName , PHP_EOL; $chartNames = $worksheet->getChartNames(); if(empty($chartNames)) { echo ' There are no charts in this worksheet' , PHP_EOL; } else { natsort($chartNames); foreach($chartNames as $i => $chartName) { $chart = $worksheet->getChartByName($chartName); if (!is_null($chart->getTitle())) { $caption = '"' . implode(' ',$chart->getTitle()->getCaption()) . '"'; } else { $caption = 'Untitled'; } echo ' ' , $chartName , ' - ' , $caption , PHP_EOL; echo str_repeat(' ',strlen($chartName)+3); $groupCount = $chart->getPlotArea()->getPlotGroupCount(); if ($groupCount == 1) { $chartType = $chart->getPlotArea()->getPlotGroupByIndex(0)->getPlotType(); echo ' ' , $chartType , PHP_EOL; } else { $chartTypes = array(); for($i = 0; $i < $groupCount; ++$i) { $chartTypes[] = $chart->getPlotArea()->getPlotGroupByIndex($i)->getPlotType(); } $chartTypes = array_unique($chartTypes); if (count($chartTypes) == 1) { $chartType = 'Multiple Plot ' . array_pop($chartTypes); echo ' ' , $chartType , PHP_EOL; } elseif (count($chartTypes) == 0) { echo ' *** Type not yet implemented' , PHP_EOL; } else { echo ' Combination Chart' , PHP_EOL; } } } } } $outputFileName = basename($inputFileName); echo date('H:i:s') , " Write Tests to Excel2007 file " , PHP_EOL; $objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); $objWriter->setIncludeCharts(TRUE); $objWriter->save($outputFileName); echo date('H:i:s') , " File written to " , $outputFileName , PHP_EOL; $objPHPExcel->disconnectWorksheets(); unset($objPHPExcel); } // Echo memory peak usage echo date('H:i:s') , ' Peak memory usage: ' , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , PHP_EOL; // Echo done echo date('H:i:s') , " Done writing files" , PHP_EOL;