ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
20readexcel5.php
Go to the documentation of this file.
1 <?php
29 error_reporting(E_ALL);
30 ini_set('display_errors', TRUE);
31 ini_set('display_startup_errors', TRUE);
32 date_default_timezone_set('Europe/London');
33 
34 define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />');
35 
36 date_default_timezone_set('Europe/London');
37 
39 require_once dirname(__FILE__) . '/../Classes/PHPExcel/IOFactory.php';
40 
41 
42 if (!file_exists("14excel5.xls")) {
43  exit("Please run 14excel5.php first.\n");
44 }
45 
46 echo date('H:i:s') , " Load workbook from Excel5 file" , EOL;
47 $callStartTime = microtime(true);
48 
50 
51 $callEndTime = microtime(true);
53 
54 echo 'Call time to load Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL;
55 // Echo memory usage
56 echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL;
57 
58 
59 // Save Excel 2007 file
60 echo date('H:i:s') , " Write to Excel2007 format" , EOL;
61 $callStartTime = microtime(true);
62 
64 $objWriter->save(str_replace('.php', '.xlsx', __FILE__));
65 $callEndTime = microtime(true);
67 
68 echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL;
69 echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL;
70 // Echo memory usage
71 echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL;
72 
73 
74 // Echo memory peak usage
75 echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL;
76 
77 // Echo done
78 echo date('H:i:s') , " Done reading file" , EOL;
79 echo 'File has been created in ' , getcwd() , EOL;
$objWriter
$callStartTime
$callTime
static load($pFilename)
Loads PHPExcel from file using automatic PHPExcel_Reader_IReader resolution.
Definition: IOFactory.php:190
static createWriter(PHPExcel $phpExcel, $writerType='')
Create PHPExcel_Writer_IWriter.
Definition: IOFactory.php:132
if($is_dev) echo "Review changes write something in WHATSNEW and and then commit with log PHP_EOL
date( 'd-M-Y', $objPHPExcel->getProperties() ->getCreated())
$callEndTime
const EOL
$objPHPExcel