ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
41password.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 
37 include "05featuredemo.inc.php";
38 
40 require_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
50 echo 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 
58 echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL;
59 echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL;
60 // Echo memory usage
61 echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL;
62 
63 
64 // Save Excel 95 file
65 echo 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 
73 echo date('H:i:s') , " File written to " , str_replace('.php', '.xls', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL;
74 echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL;
75 // Echo memory usage
76 echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL;
77 
78 
79 // Echo memory peak usage
80 echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL;
81 
82 // Echo done
83 echo date('H:i:s') , " Done writing files" , EOL;
84 echo 'Files have been created in ' , getcwd() , EOL;
$callEndTime
Definition: 41password.php:55
$objPHPExcel
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())
$objWriter
Definition: 41password.php:53
$callTime
Definition: 41password.php:56
$callStartTime
Definition: 41password.php:51
const EOL
Definition: 41password.php:33