ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
07readerPCLZip.php
Go to the documentation of this file.
1 <?php
28 error_reporting(E_ALL);
29 ini_set('display_errors', TRUE);
30 ini_set('display_startup_errors', TRUE);
31 
32 define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />');
33 
34 date_default_timezone_set('Europe/London');
35 
37 require_once dirname(__FILE__) . '/../Classes/PHPExcel/IOFactory.php';
38 
39 
40 if (!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 
47 echo 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);
54 echo 'Call time to read 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 echo 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 
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 writing file" , EOL;
79 echo 'File has been created in ' , getcwd() , EOL;
$callEndTime
const EOL
const PCLZIP
constants
Definition: Settings.php:42
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
$callTime
date( 'd-M-Y', $objPHPExcel->getProperties() ->getCreated())
$objPHPExcel
static setZipClass($zipClass)
Set the Zip handler Class that PHPExcel should use for Zip file management (PCLZip or ZipArchive) ...
Definition: Settings.php:122
$objWriter
$callStartTime