ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
06largescale-with-cellcaching.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 
33 define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />');
34 
35 date_default_timezone_set('Europe/London');
36 
38 require_once dirname(__FILE__) . '/../Classes/PHPExcel.php';
39 
42  die($cacheMethod . " caching method is not available" . EOL);
43 }
44 echo date('H:i:s') , " Enable Cell Caching using " , $cacheMethod , " method" , EOL;
45 
46 
47 // Create new PHPExcel object
48 echo date('H:i:s') , " Create new PHPExcel object" , EOL;
50 
51 // Set document properties
52 echo date('H:i:s') , " Set properties" , EOL;
53 $objPHPExcel->getProperties()->setCreator("Maarten Balliauw")
54  ->setLastModifiedBy("Maarten Balliauw")
55  ->setTitle("Office 2007 XLSX Test Document")
56  ->setSubject("Office 2007 XLSX Test Document")
57  ->setDescription("Test document for Office 2007 XLSX, generated using PHP classes.")
58  ->setKeywords("office 2007 openxml php")
59  ->setCategory("Test result file");
60 
61 
62 // Create a first sheet
63 echo date('H:i:s') , " Add data" , EOL;
64 $objPHPExcel->setActiveSheetIndex(0);
65 $objPHPExcel->getActiveSheet()->setCellValue('A1', "Firstname");
66 $objPHPExcel->getActiveSheet()->setCellValue('B1', "Lastname");
67 $objPHPExcel->getActiveSheet()->setCellValue('C1', "Phone");
68 $objPHPExcel->getActiveSheet()->setCellValue('D1', "Fax");
69 $objPHPExcel->getActiveSheet()->setCellValue('E1', "Is Client ?");
70 
71 
72 // Hide "Phone" and "fax" column
73 echo date('H:i:s') , " Hide 'Phone' and 'fax' columns" , EOL;
74 $objPHPExcel->getActiveSheet()->getColumnDimension('C')->setVisible(false);
75 $objPHPExcel->getActiveSheet()->getColumnDimension('D')->setVisible(false);
76 
77 
78 // Set outline levels
79 echo date('H:i:s') , " Set outline levels" , EOL;
80 $objPHPExcel->getActiveSheet()->getColumnDimension('E')->setOutlineLevel(1)
81  ->setVisible(false)
82  ->setCollapsed(true);
83 
84 // Freeze panes
85 echo date('H:i:s') , " Freeze panes" , EOL;
86 $objPHPExcel->getActiveSheet()->freezePane('A2');
87 
88 
89 // Rows to repeat at top
90 echo date('H:i:s') , " Rows to repeat at top" , EOL;
91 $objPHPExcel->getActiveSheet()->getPageSetup()->setRowsToRepeatAtTopByStartAndEnd(1, 1);
92 
93 
94 // Add data
95 for ($i = 2; $i <= 5000; $i++) {
96  $objPHPExcel->getActiveSheet()->setCellValue('A' . $i, "FName $i")
97  ->setCellValue('B' . $i, "LName $i")
98  ->setCellValue('C' . $i, "PhoneNo $i")
99  ->setCellValue('D' . $i, "FaxNo $i")
100  ->setCellValue('E' . $i, true);
101 }
102 
103 
104 // Set active sheet index to the first sheet, so Excel opens this as the first sheet
105 $objPHPExcel->setActiveSheetIndex(0);
106 
107 
108 // Save Excel 2007 file
109 echo date('H:i:s') , " Write to Excel2007 format" , EOL;
110 $callStartTime = microtime(true);
111 
113 $objWriter->save(str_replace('.php', '.xlsx', __FILE__));
114 $callEndTime = microtime(true);
116 
117 echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL;
118 echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL;
119 // Echo memory usage
120 echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL;
121 
122 
123 // Echo memory peak usage
124 echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL;
125 
126 // Echo done
127 echo date('H:i:s') , " Done writing file" , EOL;
128 echo 'File has been created in ' , getcwd() , EOL;
$cacheMethod
Include PHPExcel.
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())
static setCacheStorageMethod( $method=PHPExcel_CachedObjectStorageFactory::cache_in_memory, $arguments=array())
Set the method that should be used for cell cacheing.
Definition: Settings.php:176