ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
07readerPCLZip.php
Go to the documentation of this file.
1<?php
28error_reporting(E_ALL);
29ini_set('display_errors', TRUE);
30ini_set('display_startup_errors', TRUE);
31
32define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />');
33
34date_default_timezone_set('Europe/London');
35
37require_once dirname(__FILE__) . '/../Classes/PHPExcel/IOFactory.php';
38
39
40if (!file_exists("05featuredemo.xlsx")) {
41 exit("Please run 05featuredemo.php first." . EOL);
42}
43
44// Use PCLZip rather than ZipArchive to read the Excel2007 OfficeOpenXML file
46
47echo date('H:i:s') , " Load from Excel2007 file" , EOL;
48$callStartTime = microtime(true);
49
50$objPHPExcel = PHPExcel_IOFactory::load("05featuredemo.xlsx");
51
52$callEndTime = microtime(true);
54echo 'Call time to read 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
59echo date('H:i:s') , " Write to Excel2007 format" , EOL;
60$callStartTime = microtime(true);
61
63$objWriter->save(str_replace('.php', '.xlsx', __FILE__));
64
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 writing 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
const PCLZIP
constants
Definition: Settings.php:42
static setZipClass($zipClass)
Set the Zip handler Class that PHPExcel should use for Zip file management (PCLZip or ZipArchive)
Definition: Settings.php:122