 2922a13764
			
		
	
	
		2922a13764
		
			
		
	
	
	
	
		
			
			This introduce a helper class that should be used to log things, avoiding a lot of boilerplate code. Also all output are made in /tmp folder instead of beside the script itself. This is because there is a high chance that the folder containing the script is not writtable by webserver. So using the /tmp folder makes it more likely to works in a variety of setup.
		
			
				
	
	
		
			15 lines
		
	
	
		
			439 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			439 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| require __DIR__ . '/Header.php';
 | |
| 
 | |
| // Use PCLZip rather than ZipArchive to read the Excel2007 OfficeOpenXML file
 | |
| PhpSpreadsheet\Settings::setZipClass(PhpSpreadsheet\Settings::PCLZIP);
 | |
| 
 | |
| $filename = __DIR__ . '/templates/OOCalcTest.ods';
 | |
| $callStartTime = microtime(true);
 | |
| $spreadsheet = \PhpSpreadsheet\IOFactory::load($filename);
 | |
| $helper->logRead('OOCalc', $filename, $callStartTime);
 | |
| 
 | |
| // Save
 | |
| $helper->write($spreadsheet, __FILE__);
 |