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