ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
41password.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);
32
33define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />');
34
35date_default_timezone_set('Europe/London');
36
37include "05featuredemo.inc.php";
38
40require_once dirname(__FILE__) . '/../Classes/PHPExcel/IOFactory.php';
41
42
43// Set password against the spreadsheet file
44$objPHPExcel->getSecurity()->setLockWindows(true);
45$objPHPExcel->getSecurity()->setLockStructure(true);
46$objPHPExcel->getSecurity()->setWorkbookPassword('secret');
47
48
49// Save Excel 2007 file
50echo date('H:i:s') , " Write to Excel2007 format" , EOL;
51$callStartTime = microtime(true);
52
54$objWriter->save(str_replace('.php', '.xlsx', __FILE__));
55$callEndTime = microtime(true);
57
58echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL;
59echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL;
60// Echo memory usage
61echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL;
62
63
64// Save Excel 95 file
65echo date('H:i:s') , " Write to Excel5 format" , EOL;
66$callStartTime = microtime(true);
67
69$objWriter->save(str_replace('.php', '.xls', __FILE__));
70$callEndTime = microtime(true);
72
73echo date('H:i:s') , " File written to " , str_replace('.php', '.xls', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL;
74echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL;
75// Echo memory usage
76echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL;
77
78
79// Echo memory peak usage
80echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL;
81
82// Echo done
83echo date('H:i:s') , " Done writing files" , EOL;
84echo 'Files have been created in ' , getcwd() , EOL;
$objPHPExcel
date( 'd-M-Y', $objPHPExcel->getProperties() ->getCreated())
memory_get_peak_usage(true)/1024/1024)
Definition: 41password.php:80
const EOL
Definition: 41password.php:33
$callEndTime
Definition: 41password.php:55
$callTime
Definition: 41password.php:56
$callStartTime
Definition: 41password.php:51
memory_get_usage(true)/1024/1024)
Definition: 41password.php:61
$objWriter
Definition: 41password.php:53
sprintf('%.4f', $callTime)
Definition: 41password.php:59
An exception for terminatinating execution or to throw for unit testing.
static createWriter(PHPExcel $phpExcel, $writerType='')
Create PHPExcel_Writer_IWriter.
Definition: IOFactory.php:132