1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?php
- error_reporting(E_ALL);
- date_default_timezone_set('Europe/London');
- require_once dirname(__FILE__) . '/../Classes/PHPExcel/IOFactory.php';
- echo date('H:i:s') , " Load from SYLK file" , PHP_EOL;
- $objPHPExcel = PHPExcel_IOFactory::load("SylkTest.slk");
- echo date('H:i:s') , " Write to Excel2007 format" , PHP_EOL;
- $objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007');
- $objWriter->save(str_replace('.php', '.xlsx', __FILE__));
- echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', __FILE__) , PHP_EOL;
- echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , PHP_EOL;
- echo date('H:i:s') , " Done writing file" , PHP_EOL;
|