29 error_reporting(E_ALL);
30 ini_set(
'display_errors', TRUE);
31 ini_set(
'display_startup_errors', TRUE);
33 define(
'EOL',(PHP_SAPI ==
'cli') ?
PHP_EOL :
'<br />');
35 date_default_timezone_set(
'Europe/London');
38 require_once dirname(__FILE__) .
'/../Classes/PHPExcel/IOFactory.php';
42 echo date(
'H:i:s') ,
" Load from Excel5 template" ,
EOL;
49 echo date(
'H:i:s') ,
" Add new data to the template" ,
EOL;
54 array(
'title' =>
'PHP for dummies',
58 array(
'title' =>
'Inside OOP',
67 foreach(
$data as
$r => $dataRow) {
72 ->setCellValue(
'B'.
$row, $dataRow[
'title'])
73 ->setCellValue(
'C'.
$row, $dataRow[
'price'])
74 ->setCellValue(
'D'.
$row, $dataRow[
'quantity'])
82 $objWriter->save(str_replace(
'.php',
'.xls', __FILE__));
83 echo date(
'H:i:s') ,
" File written to " , str_replace(
'.php',
'.xls', pathinfo(__FILE__, PATHINFO_BASENAME)) ,
EOL;
87 echo date(
'H:i:s') ,
" Peak memory usage: " , (memory_get_peak_usage(
true) / 1024 / 1024) ,
" MB" , EOL;
91 echo 'File has been created in ' , getcwd() ,
EOL;
static createReader($readerType='')
Create PHPExcel_Reader_IReader.
static createWriter(PHPExcel $phpExcel, $writerType='')
Create PHPExcel_Writer_IWriter.
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())
Create styles array
The data for the language used.
Add data(end) time
Method that wraps PHPs time in order to allow simulations with the workflow.
static PHPToExcel($dateValue=0, $adjustToTimezone=FALSE, $timezone=NULL)
Convert a date from PHP to Excel.