@@ -44,12 +44,12 @@ |
||
44 | 44 | // Set document properties |
45 | 45 | echo date('H:i:s') , " Set document properties" , EOL; |
46 | 46 | $objPHPExcel->getProperties()->setCreator("Maarten Balliauw") |
47 | - ->setLastModifiedBy("Maarten Balliauw") |
|
48 | - ->setTitle("PHPExcel Test Document") |
|
49 | - ->setSubject("PHPExcel Test Document") |
|
50 | - ->setDescription("Test document for PHPExcel, generated using PHP classes.") |
|
51 | - ->setKeywords("office PHPExcel php") |
|
52 | - ->setCategory("Test result file"); |
|
47 | + ->setLastModifiedBy("Maarten Balliauw") |
|
48 | + ->setTitle("PHPExcel Test Document") |
|
49 | + ->setSubject("PHPExcel Test Document") |
|
50 | + ->setDescription("Test document for PHPExcel, generated using PHP classes.") |
|
51 | + ->setKeywords("office PHPExcel php") |
|
52 | + ->setCategory("Test result file"); |
|
53 | 53 | |
54 | 54 | |
55 | 55 | // Add some data |
@@ -31,18 +31,18 @@ discard block |
||
31 | 31 | ini_set('display_startup_errors', TRUE); |
32 | 32 | date_default_timezone_set('Europe/London'); |
33 | 33 | |
34 | -define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); |
|
34 | +define('EOL', (PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); |
|
35 | 35 | |
36 | 36 | /** Include PHPExcel */ |
37 | 37 | require_once dirname(__FILE__) . '/../src/Bootstrap.php'; |
38 | 38 | |
39 | 39 | |
40 | 40 | // Create new PHPExcel object |
41 | -echo date('H:i:s') , " Create new PHPExcel object" , EOL; |
|
41 | +echo date('H:i:s'), " Create new PHPExcel object", EOL; |
|
42 | 42 | $objPHPExcel = new \PHPExcel\Spreadsheet(); |
43 | 43 | |
44 | 44 | // Set document properties |
45 | -echo date('H:i:s') , " Set document properties" , EOL; |
|
45 | +echo date('H:i:s'), " Set document properties", EOL; |
|
46 | 46 | $objPHPExcel->getProperties()->setCreator("Maarten Balliauw") |
47 | 47 | ->setLastModifiedBy("Maarten Balliauw") |
48 | 48 | ->setTitle("PHPExcel Test Document") |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | |
54 | 54 | |
55 | 55 | // Add some data |
56 | -echo date('H:i:s') , " Add some data" , EOL; |
|
56 | +echo date('H:i:s'), " Add some data", EOL; |
|
57 | 57 | |
58 | 58 | $html1 = '<font color="#0000ff"> |
59 | 59 | <h1 align="center">My very first example of rich text<br />generated from html markup</h1> |
@@ -124,7 +124,7 @@ discard block |
||
124 | 124 | |
125 | 125 | |
126 | 126 | // Rename worksheet |
127 | -echo date('H:i:s') , " Rename worksheet" , EOL; |
|
127 | +echo date('H:i:s'), " Rename worksheet", EOL; |
|
128 | 128 | $objPHPExcel->getActiveSheet() |
129 | 129 | ->setTitle('Rich Text Examples'); |
130 | 130 | |
@@ -134,7 +134,7 @@ discard block |
||
134 | 134 | |
135 | 135 | |
136 | 136 | // Save Excel 2007 file |
137 | -echo date('H:i:s') , " Write to Excel2007 format" , EOL; |
|
137 | +echo date('H:i:s'), " Write to Excel2007 format", EOL; |
|
138 | 138 | $callStartTime = microtime(true); |
139 | 139 | |
140 | 140 | $objWriter = \PHPExcel\IOFactory::createWriter($objPHPExcel, 'Excel2007'); |
@@ -142,14 +142,14 @@ discard block |
||
142 | 142 | $callEndTime = microtime(true); |
143 | 143 | $callTime = $callEndTime - $callStartTime; |
144 | 144 | |
145 | -echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; |
|
146 | -echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; |
|
145 | +echo date('H:i:s'), " File written to ", str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)), EOL; |
|
146 | +echo 'Call time to write Workbook was ', sprintf('%.4f', $callTime), " seconds", EOL; |
|
147 | 147 | // Echo memory usage |
148 | -echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; |
|
148 | +echo date('H:i:s'), ' Current memory usage: ', (memory_get_usage(true) / 1024 / 1024), " MB", EOL; |
|
149 | 149 | |
150 | 150 | |
151 | 151 | // Save Excel 95 file |
152 | -echo date('H:i:s') , " Write to Excel5 format" , EOL; |
|
152 | +echo date('H:i:s'), " Write to Excel5 format", EOL; |
|
153 | 153 | $callStartTime = microtime(true); |
154 | 154 | |
155 | 155 | $objWriter = \PHPExcel\IOFactory::createWriter($objPHPExcel, 'Excel5'); |
@@ -157,15 +157,15 @@ discard block |
||
157 | 157 | $callEndTime = microtime(true); |
158 | 158 | $callTime = $callEndTime - $callStartTime; |
159 | 159 | |
160 | -echo date('H:i:s') , " File written to " , str_replace('.php', '.xls', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; |
|
161 | -echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; |
|
160 | +echo date('H:i:s'), " File written to ", str_replace('.php', '.xls', pathinfo(__FILE__, PATHINFO_BASENAME)), EOL; |
|
161 | +echo 'Call time to write Workbook was ', sprintf('%.4f', $callTime), " seconds", EOL; |
|
162 | 162 | // Echo memory usage |
163 | -echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; |
|
163 | +echo date('H:i:s'), ' Current memory usage: ', (memory_get_usage(true) / 1024 / 1024), " MB", EOL; |
|
164 | 164 | |
165 | 165 | |
166 | 166 | // Echo memory peak usage |
167 | -echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; |
|
167 | +echo date('H:i:s'), " Peak memory usage: ", (memory_get_peak_usage(true) / 1024 / 1024), " MB", EOL; |
|
168 | 168 | |
169 | 169 | // Echo done |
170 | -echo date('H:i:s') , " Done writing files" , EOL; |
|
171 | -echo 'Files have been created in ' , getcwd() , EOL; |
|
170 | +echo date('H:i:s'), " Done writing files", EOL; |
|
171 | +echo 'Files have been created in ', getcwd(), EOL; |
@@ -45,12 +45,12 @@ |
||
45 | 45 | echo date('H:i:s') , " Set document properties" , EOL; |
46 | 46 | $objPHPExcel->getProperties() |
47 | 47 | ->setCreator("PHPOffice") |
48 | - ->setLastModifiedBy("PHPOffice") |
|
49 | - ->setTitle("PHPExcel Test Document") |
|
50 | - ->setSubject("PHPExcel Test Document") |
|
51 | - ->setDescription("Test document for PHPExcel, generated using PHP classes.") |
|
52 | - ->setKeywords("Office PHPExcel php") |
|
53 | - ->setCategory("Test result file"); |
|
48 | + ->setLastModifiedBy("PHPOffice") |
|
49 | + ->setTitle("PHPExcel Test Document") |
|
50 | + ->setSubject("PHPExcel Test Document") |
|
51 | + ->setDescription("Test document for PHPExcel, generated using PHP classes.") |
|
52 | + ->setKeywords("Office PHPExcel php") |
|
53 | + ->setCategory("Test result file"); |
|
54 | 54 | |
55 | 55 | |
56 | 56 | function transpose($value) { |
@@ -31,18 +31,18 @@ discard block |
||
31 | 31 | ini_set('display_startup_errors', TRUE); |
32 | 32 | date_default_timezone_set('Europe/London'); |
33 | 33 | |
34 | -define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); |
|
34 | +define('EOL', (PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); |
|
35 | 35 | |
36 | 36 | /** Include PHPExcel */ |
37 | 37 | require_once dirname(__FILE__) . '/../src/Bootstrap.php'; |
38 | 38 | |
39 | 39 | |
40 | 40 | // Create new PHPExcel object |
41 | -echo date('H:i:s') , " Create new PHPExcel object" , EOL; |
|
41 | +echo date('H:i:s'), " Create new PHPExcel object", EOL; |
|
42 | 42 | $objPHPExcel = new \PHPExcel\Spreadsheet(); |
43 | 43 | |
44 | 44 | // Set document properties |
45 | -echo date('H:i:s') , " Set document properties" , EOL; |
|
45 | +echo date('H:i:s'), " Set document properties", EOL; |
|
46 | 46 | $objPHPExcel->getProperties() |
47 | 47 | ->setCreator("PHPOffice") |
48 | 48 | ->setLastModifiedBy("PHPOffice") |
@@ -62,10 +62,10 @@ discard block |
||
62 | 62 | $column = 'F'; |
63 | 63 | |
64 | 64 | // Set data for dropdowns |
65 | -foreach(glob('./data/continents/*') as $key => $filename) { |
|
65 | +foreach (glob('./data/continents/*') as $key => $filename) { |
|
66 | 66 | $continent = pathinfo($filename, PATHINFO_FILENAME); |
67 | 67 | echo "Loading $continent", EOL; |
68 | - $continent = str_replace(' ','_',$continent); |
|
68 | + $continent = str_replace(' ', '_', $continent); |
|
69 | 69 | $countries = file($filename, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES); |
70 | 70 | $countryCount = count($countries); |
71 | 71 | |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | ->setVisible(false); |
85 | 85 | |
86 | 86 | $objPHPExcel->getActiveSheet() |
87 | - ->setCellValue($continentColumn . ($key+1), $continent); |
|
87 | + ->setCellValue($continentColumn . ($key + 1), $continent); |
|
88 | 88 | |
89 | 89 | ++$column; |
90 | 90 | } |
@@ -97,7 +97,7 @@ discard block |
||
97 | 97 | $objPHPExcel->addNamedRange( |
98 | 98 | new PHPExcel\NamedRange( |
99 | 99 | 'Continents', |
100 | - $objPHPExcel->getActiveSheet(), $continentColumn . '1:' . $continentColumn . ($key+1) |
|
100 | + $objPHPExcel->getActiveSheet(), $continentColumn . '1:' . $continentColumn . ($key + 1) |
|
101 | 101 | ) |
102 | 102 | ); |
103 | 103 | |
@@ -119,8 +119,8 @@ discard block |
||
119 | 119 | $objValidation = $objPHPExcel->getActiveSheet() |
120 | 120 | ->getCell('B1') |
121 | 121 | ->getDataValidation(); |
122 | -$objValidation->setType( PHPExcel\Cell\DataValidation::TYPE_LIST ) |
|
123 | - ->setErrorStyle( PHPExcel\Cell\DataValidation::STYLE_INFORMATION ) |
|
122 | +$objValidation->setType(PHPExcel\Cell\DataValidation::TYPE_LIST) |
|
123 | + ->setErrorStyle(PHPExcel\Cell\DataValidation::STYLE_INFORMATION) |
|
124 | 124 | ->setAllowBlank(false) |
125 | 125 | ->setShowInputMessage(true) |
126 | 126 | ->setShowErrorMessage(true) |
@@ -140,8 +140,8 @@ discard block |
||
140 | 140 | $objValidation = $objPHPExcel->getActiveSheet() |
141 | 141 | ->getCell('B3') |
142 | 142 | ->getDataValidation(); |
143 | -$objValidation->setType( PHPExcel\Cell\DataValidation::TYPE_LIST ) |
|
144 | - ->setErrorStyle( PHPExcel\Cell\DataValidation::STYLE_INFORMATION ) |
|
143 | +$objValidation->setType(PHPExcel\Cell\DataValidation::TYPE_LIST) |
|
144 | + ->setErrorStyle(PHPExcel\Cell\DataValidation::STYLE_INFORMATION) |
|
145 | 145 | ->setAllowBlank(false) |
146 | 146 | ->setShowInputMessage(true) |
147 | 147 | ->setShowErrorMessage(true) |
@@ -162,14 +162,14 @@ discard block |
||
162 | 162 | |
163 | 163 | // Save Excel 2007 file |
164 | 164 | // This linked validation list method only seems to work for Excel2007, not for Excel5 |
165 | -echo date('H:i:s') , " Write to Excel2007 format" , EOL; |
|
165 | +echo date('H:i:s'), " Write to Excel2007 format", EOL; |
|
166 | 166 | $objWriter = \PHPExcel\IOFactory::createWriter($objPHPExcel, 'Excel2007'); |
167 | 167 | $objWriter->save(str_replace('.php', '.xlsx', __FILE__)); |
168 | -echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; |
|
168 | +echo date('H:i:s'), " File written to ", str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)), EOL; |
|
169 | 169 | |
170 | 170 | // Echo memory peak usage |
171 | -echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; |
|
171 | +echo date('H:i:s'), " Peak memory usage: ", (memory_get_peak_usage(true) / 1024 / 1024), " MB", EOL; |
|
172 | 172 | |
173 | 173 | // Echo done |
174 | -echo date('H:i:s') , " Done writing files" , EOL; |
|
175 | -echo 'Files have been created in ' , getcwd() , EOL; |
|
174 | +echo date('H:i:s'), " Done writing files", EOL; |
|
175 | +echo 'Files have been created in ', getcwd(), EOL; |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | /** \PHPExcel\IOFactory */ |
34 | 34 | require_once dirname(__FILE__) . '/../Classes/PHPExcel/IOFactory.php'; |
35 | 35 | |
36 | -echo date('H:i:s') , " Load from Gnumeric file" , PHP_EOL; |
|
36 | +echo date('H:i:s'), " Load from Gnumeric file", PHP_EOL; |
|
37 | 37 | $callStartTime = microtime(true); |
38 | 38 | |
39 | 39 | $objReader = \PHPExcel\IOFactory::createReader('Gnumeric'); |
@@ -42,19 +42,19 @@ discard block |
||
42 | 42 | |
43 | 43 | $callEndTime = microtime(true); |
44 | 44 | $callTime = $callEndTime - $callStartTime; |
45 | -echo 'Call time to read Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , PHP_EOL; |
|
45 | +echo 'Call time to read Workbook was ', sprintf('%.4f', $callTime), " seconds", PHP_EOL; |
|
46 | 46 | // Echo memory usage |
47 | -echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , PHP_EOL; |
|
47 | +echo date('H:i:s'), ' Current memory usage: ', (memory_get_usage(true) / 1024 / 1024), " MB", PHP_EOL; |
|
48 | 48 | |
49 | 49 | |
50 | -echo date('H:i:s') , " Write to Excel2007 format" , PHP_EOL; |
|
50 | +echo date('H:i:s'), " Write to Excel2007 format", PHP_EOL; |
|
51 | 51 | $objWriter = \PHPExcel\IOFactory::createWriter($objPHPExcel, 'Excel2007'); |
52 | 52 | $objWriter->save(str_replace('.php', '.xlsx', __FILE__)); |
53 | -echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', __FILE__) , PHP_EOL; |
|
53 | +echo date('H:i:s'), " File written to ", str_replace('.php', '.xlsx', __FILE__), PHP_EOL; |
|
54 | 54 | |
55 | 55 | |
56 | 56 | // Echo memory peak usage |
57 | -echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , PHP_EOL; |
|
57 | +echo date('H:i:s'), " Peak memory usage: ", (memory_get_peak_usage(true) / 1024 / 1024), " MB", PHP_EOL; |
|
58 | 58 | |
59 | 59 | // Echo done |
60 | -echo date('H:i:s') , " Done writing file" , PHP_EOL; |
|
60 | +echo date('H:i:s'), " Done writing file", PHP_EOL; |
@@ -33,33 +33,33 @@ |
||
33 | 33 | <?php |
34 | 34 | /** If the user has submitted the form, then we need to execute a calculation **/ |
35 | 35 | if (isset($_POST['submit'])) { |
36 | - if ($_POST['A'] == 0) { |
|
37 | - echo 'The equation is not quadratic'; |
|
38 | - } else { |
|
39 | - /** So we include PHPExcel to perform the calculations **/ |
|
40 | - include 'PHPExcel/IOFactory.php'; |
|
36 | + if ($_POST['A'] == 0) { |
|
37 | + echo 'The equation is not quadratic'; |
|
38 | + } else { |
|
39 | + /** So we include PHPExcel to perform the calculations **/ |
|
40 | + include 'PHPExcel/IOFactory.php'; |
|
41 | 41 | |
42 | - /** Load the quadratic equation solver worksheet into memory **/ |
|
43 | - $objPHPExcel = \PHPExcel\IOFactory::load('./Quadratic.xlsx'); |
|
42 | + /** Load the quadratic equation solver worksheet into memory **/ |
|
43 | + $objPHPExcel = \PHPExcel\IOFactory::load('./Quadratic.xlsx'); |
|
44 | 44 | |
45 | - /** Set our A, B and C values **/ |
|
46 | - $objPHPExcel->getActiveSheet()->setCellValue('A1', $_POST['A']); |
|
47 | - $objPHPExcel->getActiveSheet()->setCellValue('B1', $_POST['B']); |
|
48 | - $objPHPExcel->getActiveSheet()->setCellValue('C1', $_POST['C']); |
|
45 | + /** Set our A, B and C values **/ |
|
46 | + $objPHPExcel->getActiveSheet()->setCellValue('A1', $_POST['A']); |
|
47 | + $objPHPExcel->getActiveSheet()->setCellValue('B1', $_POST['B']); |
|
48 | + $objPHPExcel->getActiveSheet()->setCellValue('C1', $_POST['C']); |
|
49 | 49 | |
50 | 50 | |
51 | - /** Calculate and Display the results **/ |
|
52 | - echo '<hr /><b>Roots:</b><br />'; |
|
51 | + /** Calculate and Display the results **/ |
|
52 | + echo '<hr /><b>Roots:</b><br />'; |
|
53 | 53 | |
54 | - $callStartTime = microtime(true); |
|
55 | - echo $objPHPExcel->getActiveSheet()->getCell('B5')->getCalculatedValue().'<br />'; |
|
56 | - echo $objPHPExcel->getActiveSheet()->getCell('B6')->getCalculatedValue().'<br />'; |
|
57 | - $callEndTime = microtime(true); |
|
58 | - $callTime = $callEndTime - $callStartTime; |
|
54 | + $callStartTime = microtime(true); |
|
55 | + echo $objPHPExcel->getActiveSheet()->getCell('B5')->getCalculatedValue().'<br />'; |
|
56 | + echo $objPHPExcel->getActiveSheet()->getCell('B6')->getCalculatedValue().'<br />'; |
|
57 | + $callEndTime = microtime(true); |
|
58 | + $callTime = $callEndTime - $callStartTime; |
|
59 | 59 | |
60 | - echo '<hr />Call time for Quadratic Equation Solution was '.sprintf('%.4f',$callTime).' seconds<br /><hr />'; |
|
61 | - echo ' Peak memory usage: '.(memory_get_peak_usage(true) / 1024 / 1024).' MB<br />'; |
|
62 | - } |
|
60 | + echo '<hr />Call time for Quadratic Equation Solution was '.sprintf('%.4f',$callTime).' seconds<br /><hr />'; |
|
61 | + echo ' Peak memory usage: '.(memory_get_peak_usage(true) / 1024 / 1024).' MB<br />'; |
|
62 | + } |
|
63 | 63 | } |
64 | 64 | |
65 | 65 | ?> |
@@ -52,13 +52,13 @@ |
||
52 | 52 | echo '<hr /><b>Roots:</b><br />'; |
53 | 53 | |
54 | 54 | $callStartTime = microtime(true); |
55 | - echo $objPHPExcel->getActiveSheet()->getCell('B5')->getCalculatedValue().'<br />'; |
|
56 | - echo $objPHPExcel->getActiveSheet()->getCell('B6')->getCalculatedValue().'<br />'; |
|
55 | + echo $objPHPExcel->getActiveSheet()->getCell('B5')->getCalculatedValue() . '<br />'; |
|
56 | + echo $objPHPExcel->getActiveSheet()->getCell('B6')->getCalculatedValue() . '<br />'; |
|
57 | 57 | $callEndTime = microtime(true); |
58 | 58 | $callTime = $callEndTime - $callStartTime; |
59 | 59 | |
60 | - echo '<hr />Call time for Quadratic Equation Solution was '.sprintf('%.4f',$callTime).' seconds<br /><hr />'; |
|
61 | - echo ' Peak memory usage: '.(memory_get_peak_usage(true) / 1024 / 1024).' MB<br />'; |
|
60 | + echo '<hr />Call time for Quadratic Equation Solution was ' . sprintf('%.4f', $callTime) . ' seconds<br /><hr />'; |
|
61 | + echo ' Peak memory usage: ' . (memory_get_peak_usage(true) / 1024 / 1024) . ' MB<br />'; |
|
62 | 62 | } |
63 | 63 | } |
64 | 64 |
@@ -38,7 +38,7 @@ |
||
38 | 38 | |
39 | 39 | |
40 | 40 | if (!file_exists("05featuredemo.xlsx")) { |
41 | - exit("Please run 05featuredemo.php first." . EOL); |
|
41 | + exit("Please run 05featuredemo.php first." . EOL); |
|
42 | 42 | } |
43 | 43 | |
44 | 44 | echo date('H:i:s') , " Load from Excel2007 file" , EOL; |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | ini_set('display_errors', TRUE); |
30 | 30 | ini_set('display_startup_errors', TRUE); |
31 | 31 | |
32 | -define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); |
|
32 | +define('EOL', (PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); |
|
33 | 33 | |
34 | 34 | date_default_timezone_set('Europe/London'); |
35 | 35 | |
@@ -41,19 +41,19 @@ discard block |
||
41 | 41 | exit("Please run 05featuredemo.php first." . EOL); |
42 | 42 | } |
43 | 43 | |
44 | -echo date('H:i:s') , " Load from Excel2007 file" , EOL; |
|
44 | +echo date('H:i:s'), " Load from Excel2007 file", EOL; |
|
45 | 45 | $callStartTime = microtime(true); |
46 | 46 | |
47 | 47 | $objPHPExcel = \PHPExcel\IOFactory::load("05featuredemo.xlsx"); |
48 | 48 | |
49 | 49 | $callEndTime = microtime(true); |
50 | 50 | $callTime = $callEndTime - $callStartTime; |
51 | -echo 'Call time to read Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; |
|
51 | +echo 'Call time to read Workbook was ', sprintf('%.4f', $callTime), " seconds", EOL; |
|
52 | 52 | // Echo memory usage |
53 | -echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; |
|
53 | +echo date('H:i:s'), ' Current memory usage: ', (memory_get_usage(true) / 1024 / 1024), " MB", EOL; |
|
54 | 54 | |
55 | 55 | |
56 | -echo date('H:i:s') , " Write to Excel2007 format" , EOL; |
|
56 | +echo date('H:i:s'), " Write to Excel2007 format", EOL; |
|
57 | 57 | $callStartTime = microtime(true); |
58 | 58 | |
59 | 59 | $objWriter = \PHPExcel\IOFactory::createWriter($objPHPExcel, 'Excel2007'); |
@@ -62,15 +62,15 @@ discard block |
||
62 | 62 | $callEndTime = microtime(true); |
63 | 63 | $callTime = $callEndTime - $callStartTime; |
64 | 64 | |
65 | -echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; |
|
66 | -echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; |
|
65 | +echo date('H:i:s'), " File written to ", str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)), EOL; |
|
66 | +echo 'Call time to write Workbook was ', sprintf('%.4f', $callTime), " seconds", EOL; |
|
67 | 67 | // Echo memory usage |
68 | -echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; |
|
68 | +echo date('H:i:s'), ' Current memory usage: ', (memory_get_usage(true) / 1024 / 1024), " MB", EOL; |
|
69 | 69 | |
70 | 70 | |
71 | 71 | // Echo memory peak usage |
72 | -echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; |
|
72 | +echo date('H:i:s'), " Peak memory usage: ", (memory_get_peak_usage(true) / 1024 / 1024), " MB", EOL; |
|
73 | 73 | |
74 | 74 | // Echo done |
75 | -echo date('H:i:s') , " Done writing file" , EOL; |
|
76 | -echo 'File has been created in ' , getcwd() , EOL; |
|
75 | +echo date('H:i:s'), " Done writing file", EOL; |
|
76 | +echo 'File has been created in ', getcwd(), EOL; |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | require_once dirname(__FILE__) . '/../src/Bootstrap.php'; |
41 | 41 | |
42 | 42 | if (!file_exists("33chartcreate-bar.xlsx")) { |
43 | - exit("Please run 33chartcreate-bar.php first." . EOL); |
|
43 | + exit("Please run 33chartcreate-bar.php first." . EOL); |
|
44 | 44 | } |
45 | 45 | |
46 | 46 | echo date('H:i:s') , " Load from Excel2007 file" , EOL; |
@@ -52,14 +52,14 @@ discard block |
||
52 | 52 | echo date('H:i:s') , " Update cell data values that are displayed in the chart" , EOL; |
53 | 53 | $objWorksheet = $objPHPExcel->getActiveSheet(); |
54 | 54 | $objWorksheet->fromArray( |
55 | - array( |
|
56 | - array(50-12, 50-15, 50-21), |
|
57 | - array(50-56, 50-73, 50-86), |
|
58 | - array(50-52, 50-61, 50-69), |
|
59 | - array(50-30, 50-32, 50), |
|
60 | - ), |
|
61 | - NULL, |
|
62 | - 'B2' |
|
55 | + array( |
|
56 | + array(50-12, 50-15, 50-21), |
|
57 | + array(50-56, 50-73, 50-86), |
|
58 | + array(50-52, 50-61, 50-69), |
|
59 | + array(50-30, 50-32, 50), |
|
60 | + ), |
|
61 | + NULL, |
|
62 | + 'B2' |
|
63 | 63 | ); |
64 | 64 | |
65 | 65 | // Save Excel 2007 file |
@@ -6,7 +6,7 @@ discard block |
||
6 | 6 | ini_set('display_startup_errors', TRUE); |
7 | 7 | date_default_timezone_set('Europe/London'); |
8 | 8 | |
9 | -define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); |
|
9 | +define('EOL', (PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); |
|
10 | 10 | |
11 | 11 | date_default_timezone_set('Europe/London'); |
12 | 12 | |
@@ -43,36 +43,36 @@ discard block |
||
43 | 43 | exit("Please run 33chartcreate-bar.php first." . EOL); |
44 | 44 | } |
45 | 45 | |
46 | -echo date('H:i:s') , " Load from Excel2007 file" , EOL; |
|
46 | +echo date('H:i:s'), " Load from Excel2007 file", EOL; |
|
47 | 47 | $objReader = \PHPExcel\IOFactory::createReader("Excel2007"); |
48 | 48 | $objReader->setIncludeCharts(TRUE); |
49 | 49 | $objPHPExcel = $objReader->load("33chartcreate-bar.xlsx"); |
50 | 50 | |
51 | 51 | |
52 | -echo date('H:i:s') , " Update cell data values that are displayed in the chart" , EOL; |
|
52 | +echo date('H:i:s'), " Update cell data values that are displayed in the chart", EOL; |
|
53 | 53 | $objWorksheet = $objPHPExcel->getActiveSheet(); |
54 | 54 | $objWorksheet->fromArray( |
55 | 55 | array( |
56 | - array(50-12, 50-15, 50-21), |
|
57 | - array(50-56, 50-73, 50-86), |
|
58 | - array(50-52, 50-61, 50-69), |
|
59 | - array(50-30, 50-32, 50), |
|
56 | + array(50 - 12, 50 - 15, 50 - 21), |
|
57 | + array(50 - 56, 50 - 73, 50 - 86), |
|
58 | + array(50 - 52, 50 - 61, 50 - 69), |
|
59 | + array(50 - 30, 50 - 32, 50), |
|
60 | 60 | ), |
61 | 61 | NULL, |
62 | 62 | 'B2' |
63 | 63 | ); |
64 | 64 | |
65 | 65 | // Save Excel 2007 file |
66 | -echo date('H:i:s') , " Write to Excel2007 format" , EOL; |
|
66 | +echo date('H:i:s'), " Write to Excel2007 format", EOL; |
|
67 | 67 | $objWriter = \PHPExcel\IOFactory::createWriter($objPHPExcel, 'Excel2007'); |
68 | 68 | $objWriter->setIncludeCharts(TRUE); |
69 | 69 | $objWriter->save(str_replace('.php', '.xlsx', __FILE__)); |
70 | -echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; |
|
70 | +echo date('H:i:s'), " File written to ", str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)), EOL; |
|
71 | 71 | |
72 | 72 | |
73 | 73 | // Echo memory peak usage |
74 | -echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; |
|
74 | +echo date('H:i:s'), " Peak memory usage: ", (memory_get_peak_usage(true) / 1024 / 1024), " MB", EOL; |
|
75 | 75 | |
76 | 76 | // Echo done |
77 | -echo date('H:i:s') , " Done writing file" , EOL; |
|
78 | -echo 'File has been created in ' , getcwd() , EOL; |
|
77 | +echo date('H:i:s'), " Done writing file", EOL; |
|
78 | +echo 'File has been created in ', getcwd(), EOL; |
@@ -5,18 +5,18 @@ discard block |
||
5 | 5 | ini_set('display_startup_errors', TRUE); |
6 | 6 | date_default_timezone_set('Europe/London'); |
7 | 7 | |
8 | -define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); |
|
8 | +define('EOL', (PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); |
|
9 | 9 | |
10 | 10 | date_default_timezone_set('Europe/London'); |
11 | 11 | |
12 | 12 | /** Include PHPExcel */ |
13 | 13 | require_once dirname(__FILE__) . '/../src/Bootstrap.php'; |
14 | 14 | |
15 | -echo date('H:i:s') , " Create new PHPExcel object" , EOL; |
|
15 | +echo date('H:i:s'), " Create new PHPExcel object", EOL; |
|
16 | 16 | $objPHPExcel = new \PHPExcel\Spreadsheet(); |
17 | 17 | $worksheet = $objPHPExcel->getActiveSheet(); |
18 | 18 | |
19 | -echo date('H:i:s') , " Create styles array" , EOL; |
|
19 | +echo date('H:i:s'), " Create styles array", EOL; |
|
20 | 20 | $styles = array(); |
21 | 21 | for ($i = 0; $i < 10; $i++) { |
22 | 22 | $style = new \PHPExcel\Style(); |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | $styles[] = $style; |
25 | 25 | } |
26 | 26 | |
27 | -echo date('H:i:s') , " Add data (begin)" , EOL; |
|
27 | +echo date('H:i:s'), " Add data (begin)", EOL; |
|
28 | 28 | $t = microtime(true); |
29 | 29 | for ($col = 0; $col < 50; $col++) { |
30 | 30 | for ($row = 0; $row < 100; $row++) { |
@@ -36,16 +36,16 @@ discard block |
||
36 | 36 | } |
37 | 37 | } |
38 | 38 | $d = microtime(true) - $t; |
39 | -echo date('H:i:s') , " Add data (end), time: " . round($d, 2) . " s", EOL; |
|
39 | +echo date('H:i:s'), " Add data (end), time: " . round($d, 2) . " s", EOL; |
|
40 | 40 | |
41 | 41 | |
42 | -echo date('H:i:s') , " Write to Excel2007 format" , EOL; |
|
42 | +echo date('H:i:s'), " Write to Excel2007 format", EOL; |
|
43 | 43 | $objWriter = \PHPExcel\IOFactory::createWriter($objPHPExcel, 'Excel2007'); |
44 | 44 | $objWriter->save(str_replace('.php', '.xlsx', __FILE__)); |
45 | -echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; |
|
45 | +echo date('H:i:s'), " File written to ", str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)), EOL; |
|
46 | 46 | |
47 | 47 | |
48 | -echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; |
|
48 | +echo date('H:i:s'), " Peak memory usage: ", (memory_get_peak_usage(true) / 1024 / 1024), " MB", EOL; |
|
49 | 49 | |
50 | -echo date('H:i:s') , " Done writing file" , EOL; |
|
51 | -echo 'File has been created in ' , getcwd() , EOL; |
|
50 | +echo date('H:i:s'), " Done writing file", EOL; |
|
51 | +echo 'File has been created in ', getcwd(), EOL; |
@@ -43,14 +43,14 @@ discard block |
||
43 | 43 | $objPHPExcel = new \PHPExcel\Spreadsheet(); |
44 | 44 | $objWorksheet = $objPHPExcel->getActiveSheet(); |
45 | 45 | $objWorksheet->fromArray( |
46 | - array( |
|
47 | - array('Counts', 'Max', 'Min', 'Min Threshold', 'Max Threshold' ), |
|
48 | - array(10, 10, 5, 0, 50 ), |
|
49 | - array(30, 20, 10, 0, 50 ), |
|
50 | - array(20, 30, 15, 0, 50 ), |
|
51 | - array(40, 10, 0, 0, 50 ), |
|
52 | - array(100, 40, 5, 0, 50 ), |
|
53 | - ), null, 'A1', true |
|
46 | + array( |
|
47 | + array('Counts', 'Max', 'Min', 'Min Threshold', 'Max Threshold' ), |
|
48 | + array(10, 10, 5, 0, 50 ), |
|
49 | + array(30, 20, 10, 0, 50 ), |
|
50 | + array(20, 30, 15, 0, 50 ), |
|
51 | + array(40, 10, 0, 0, 50 ), |
|
52 | + array(100, 40, 5, 0, 50 ), |
|
53 | + ), null, 'A1', true |
|
54 | 54 | ); |
55 | 55 | $objWorksheet->getStyle('B2:E6')->getNumberFormat()->setFormatCode(PHPExcel\Style\NumberFormat::FORMAT_NUMBER_00); |
56 | 56 | |
@@ -63,10 +63,10 @@ discard block |
||
63 | 63 | // Data values |
64 | 64 | // Data Marker |
65 | 65 | $dataSeriesLabels = array( |
66 | - new \PHPExcel\Chart\DataSeriesValues('String', 'Worksheet!$B$1', NULL, 1), //Max / Open |
|
67 | - new \PHPExcel\Chart\DataSeriesValues('String', 'Worksheet!$C$1', NULL, 1), //Min / Close |
|
68 | - new \PHPExcel\Chart\DataSeriesValues('String', 'Worksheet!$D$1', NULL, 1), //Min Threshold / Min |
|
69 | - new \PHPExcel\Chart\DataSeriesValues('String', 'Worksheet!$E$1', NULL, 1), //Max Threshold / Max |
|
66 | + new \PHPExcel\Chart\DataSeriesValues('String', 'Worksheet!$B$1', NULL, 1), //Max / Open |
|
67 | + new \PHPExcel\Chart\DataSeriesValues('String', 'Worksheet!$C$1', NULL, 1), //Min / Close |
|
68 | + new \PHPExcel\Chart\DataSeriesValues('String', 'Worksheet!$D$1', NULL, 1), //Min Threshold / Min |
|
69 | + new \PHPExcel\Chart\DataSeriesValues('String', 'Worksheet!$E$1', NULL, 1), //Max Threshold / Max |
|
70 | 70 | ); |
71 | 71 | // Set the X-Axis Labels |
72 | 72 | // Datatype |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | // Data values |
77 | 77 | // Data Marker |
78 | 78 | $xAxisTickValues = array( |
79 | - new \PHPExcel\Chart\DataSeriesValues('String', 'Worksheet!$A$2:$A$6', NULL, 5), // Counts |
|
79 | + new \PHPExcel\Chart\DataSeriesValues('String', 'Worksheet!$A$2:$A$6', NULL, 5), // Counts |
|
80 | 80 | ); |
81 | 81 | // Set the Data values for each data series we want to plot |
82 | 82 | // Datatype |
@@ -86,20 +86,20 @@ discard block |
||
86 | 86 | // Data values |
87 | 87 | // Data Marker |
88 | 88 | $dataSeriesValues = array( |
89 | - new \PHPExcel\Chart\DataSeriesValues('Number', 'Worksheet!$B$2:$B$6', NULL, 5), |
|
90 | - new \PHPExcel\Chart\DataSeriesValues('Number', 'Worksheet!$C$2:$C$6', NULL, 5), |
|
91 | - new \PHPExcel\Chart\DataSeriesValues('Number', 'Worksheet!$D$2:$D$6', NULL, 5), |
|
92 | - new \PHPExcel\Chart\DataSeriesValues('Number', 'Worksheet!$E$2:$E$6', NULL, 5), |
|
89 | + new \PHPExcel\Chart\DataSeriesValues('Number', 'Worksheet!$B$2:$B$6', NULL, 5), |
|
90 | + new \PHPExcel\Chart\DataSeriesValues('Number', 'Worksheet!$C$2:$C$6', NULL, 5), |
|
91 | + new \PHPExcel\Chart\DataSeriesValues('Number', 'Worksheet!$D$2:$D$6', NULL, 5), |
|
92 | + new \PHPExcel\Chart\DataSeriesValues('Number', 'Worksheet!$E$2:$E$6', NULL, 5), |
|
93 | 93 | ); |
94 | 94 | |
95 | 95 | // Build the dataseries |
96 | 96 | $series = new \PHPExcel\Chart\DataSeries( |
97 | - \PHPExcel\Chart\DataSeries::TYPE_STOCKCHART, // plotType |
|
98 | - null, // plotGrouping - if we set this to not null, then xlsx throws error |
|
99 | - range(0, count($dataSeriesValues)-1), // plotOrder |
|
100 | - $dataSeriesLabels, // plotLabel |
|
101 | - $xAxisTickValues, // plotCategory |
|
102 | - $dataSeriesValues // plotValues |
|
97 | + \PHPExcel\Chart\DataSeries::TYPE_STOCKCHART, // plotType |
|
98 | + null, // plotGrouping - if we set this to not null, then xlsx throws error |
|
99 | + range(0, count($dataSeriesValues)-1), // plotOrder |
|
100 | + $dataSeriesLabels, // plotLabel |
|
101 | + $xAxisTickValues, // plotCategory |
|
102 | + $dataSeriesValues // plotValues |
|
103 | 103 | ); |
104 | 104 | |
105 | 105 | // Set the series in the plot area |
@@ -113,14 +113,14 @@ discard block |
||
113 | 113 | |
114 | 114 | // Create the chart |
115 | 115 | $chart = new \PHPExcel\Chart( |
116 | - 'stock-chart', // name |
|
117 | - $title, // title |
|
118 | - $legend, // legend |
|
119 | - $plotArea, // plotArea |
|
120 | - true, // plotVisibleOnly |
|
121 | - 0, // displayBlanksAs |
|
122 | - $xAxisLabel, // xAxisLabel |
|
123 | - $yAxisLabel // yAxisLabel |
|
116 | + 'stock-chart', // name |
|
117 | + $title, // title |
|
118 | + $legend, // legend |
|
119 | + $plotArea, // plotArea |
|
120 | + true, // plotVisibleOnly |
|
121 | + 0, // displayBlanksAs |
|
122 | + $xAxisLabel, // xAxisLabel |
|
123 | + $yAxisLabel // yAxisLabel |
|
124 | 124 | ); |
125 | 125 | |
126 | 126 | // Set the position where the chart should appear in the worksheet |
@@ -137,7 +137,7 @@ discard block |
||
137 | 137 | $objWriter->setIncludeCharts(TRUE); |
138 | 138 | $filename = str_replace('.php', '.xlsx', __FILE__); |
139 | 139 | if(file_exists($filename)) { |
140 | - unlink($filename); |
|
140 | + unlink($filename); |
|
141 | 141 | } |
142 | 142 | $objWriter->save($filename); |
143 | 143 | echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; |
@@ -6,7 +6,7 @@ discard block |
||
6 | 6 | ini_set('display_startup_errors', TRUE); |
7 | 7 | date_default_timezone_set('Europe/London'); |
8 | 8 | |
9 | -define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); |
|
9 | +define('EOL', (PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); |
|
10 | 10 | |
11 | 11 | date_default_timezone_set('Europe/London'); |
12 | 12 | |
@@ -44,12 +44,12 @@ discard block |
||
44 | 44 | $objWorksheet = $objPHPExcel->getActiveSheet(); |
45 | 45 | $objWorksheet->fromArray( |
46 | 46 | array( |
47 | - array('Counts', 'Max', 'Min', 'Min Threshold', 'Max Threshold' ), |
|
48 | - array(10, 10, 5, 0, 50 ), |
|
49 | - array(30, 20, 10, 0, 50 ), |
|
50 | - array(20, 30, 15, 0, 50 ), |
|
51 | - array(40, 10, 0, 0, 50 ), |
|
52 | - array(100, 40, 5, 0, 50 ), |
|
47 | + array('Counts', 'Max', 'Min', 'Min Threshold', 'Max Threshold'), |
|
48 | + array(10, 10, 5, 0, 50), |
|
49 | + array(30, 20, 10, 0, 50), |
|
50 | + array(20, 30, 15, 0, 50), |
|
51 | + array(40, 10, 0, 0, 50), |
|
52 | + array(100, 40, 5, 0, 50), |
|
53 | 53 | ), null, 'A1', true |
54 | 54 | ); |
55 | 55 | $objWorksheet->getStyle('B2:E6')->getNumberFormat()->setFormatCode(PHPExcel\Style\NumberFormat::FORMAT_NUMBER_00); |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | // Data values |
77 | 77 | // Data Marker |
78 | 78 | $xAxisTickValues = array( |
79 | - new \PHPExcel\Chart\DataSeriesValues('String', 'Worksheet!$A$2:$A$6', NULL, 5), // Counts |
|
79 | + new \PHPExcel\Chart\DataSeriesValues('String', 'Worksheet!$A$2:$A$6', NULL, 5), // Counts |
|
80 | 80 | ); |
81 | 81 | // Set the Data values for each data series we want to plot |
82 | 82 | // Datatype |
@@ -94,11 +94,11 @@ discard block |
||
94 | 94 | |
95 | 95 | // Build the dataseries |
96 | 96 | $series = new \PHPExcel\Chart\DataSeries( |
97 | - \PHPExcel\Chart\DataSeries::TYPE_STOCKCHART, // plotType |
|
98 | - null, // plotGrouping - if we set this to not null, then xlsx throws error |
|
99 | - range(0, count($dataSeriesValues)-1), // plotOrder |
|
100 | - $dataSeriesLabels, // plotLabel |
|
101 | - $xAxisTickValues, // plotCategory |
|
97 | + \PHPExcel\Chart\DataSeries::TYPE_STOCKCHART, // plotType |
|
98 | + null, // plotGrouping - if we set this to not null, then xlsx throws error |
|
99 | + range(0, count($dataSeriesValues) - 1), // plotOrder |
|
100 | + $dataSeriesLabels, // plotLabel |
|
101 | + $xAxisTickValues, // plotCategory |
|
102 | 102 | $dataSeriesValues // plotValues |
103 | 103 | ); |
104 | 104 | |
@@ -113,13 +113,13 @@ discard block |
||
113 | 113 | |
114 | 114 | // Create the chart |
115 | 115 | $chart = new \PHPExcel\Chart( |
116 | - 'stock-chart', // name |
|
117 | - $title, // title |
|
118 | - $legend, // legend |
|
119 | - $plotArea, // plotArea |
|
120 | - true, // plotVisibleOnly |
|
121 | - 0, // displayBlanksAs |
|
122 | - $xAxisLabel, // xAxisLabel |
|
116 | + 'stock-chart', // name |
|
117 | + $title, // title |
|
118 | + $legend, // legend |
|
119 | + $plotArea, // plotArea |
|
120 | + true, // plotVisibleOnly |
|
121 | + 0, // displayBlanksAs |
|
122 | + $xAxisLabel, // xAxisLabel |
|
123 | 123 | $yAxisLabel // yAxisLabel |
124 | 124 | ); |
125 | 125 | |
@@ -132,20 +132,20 @@ discard block |
||
132 | 132 | |
133 | 133 | |
134 | 134 | // Save Excel 2007 file |
135 | -echo date('H:i:s') , " Write to Excel2007 format" , EOL; |
|
135 | +echo date('H:i:s'), " Write to Excel2007 format", EOL; |
|
136 | 136 | $objWriter = \PHPExcel\IOFactory::createWriter($objPHPExcel, 'Excel2007'); |
137 | 137 | $objWriter->setIncludeCharts(TRUE); |
138 | 138 | $filename = str_replace('.php', '.xlsx', __FILE__); |
139 | -if(file_exists($filename)) { |
|
139 | +if (file_exists($filename)) { |
|
140 | 140 | unlink($filename); |
141 | 141 | } |
142 | 142 | $objWriter->save($filename); |
143 | -echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; |
|
143 | +echo date('H:i:s'), " File written to ", str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)), EOL; |
|
144 | 144 | |
145 | 145 | |
146 | 146 | // Echo memory peak usage |
147 | -echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; |
|
147 | +echo date('H:i:s'), " Peak memory usage: ", (memory_get_peak_usage(true) / 1024 / 1024), " MB", EOL; |
|
148 | 148 | |
149 | 149 | // Echo done |
150 | -echo date('H:i:s') , " Done writing file" , EOL; |
|
151 | -echo 'File has been created in ' , getcwd() , EOL; |
|
150 | +echo date('H:i:s'), " Done writing file", EOL; |
|
151 | +echo 'File has been created in ', getcwd(), EOL; |
@@ -46,23 +46,23 @@ discard block |
||
46 | 46 | // Set document properties |
47 | 47 | echo date('H:i:s') , " Set document properties" , EOL; |
48 | 48 | $objPHPExcel->getProperties()->setCreator("Maarten Balliauw") |
49 | - ->setLastModifiedBy("Maarten Balliauw") |
|
50 | - ->setTitle("Office 2007 XLSX Test Document") |
|
51 | - ->setSubject("Office 2007 XLSX Test Document") |
|
52 | - ->setDescription("Test document for Office 2007 XLSX, generated using PHP classes.") |
|
53 | - ->setKeywords("office 2007 openxml php") |
|
54 | - ->setCategory("Test result file"); |
|
49 | + ->setLastModifiedBy("Maarten Balliauw") |
|
50 | + ->setTitle("Office 2007 XLSX Test Document") |
|
51 | + ->setSubject("Office 2007 XLSX Test Document") |
|
52 | + ->setDescription("Test document for Office 2007 XLSX, generated using PHP classes.") |
|
53 | + ->setKeywords("office 2007 openxml php") |
|
54 | + ->setCategory("Test result file"); |
|
55 | 55 | |
56 | 56 | |
57 | 57 | // Add some data |
58 | 58 | echo date('H:i:s') , " Add some data" , EOL; |
59 | 59 | $objPHPExcel->setActiveSheetIndex(0); |
60 | 60 | $objPHPExcel->getActiveSheet()->setCellValue('A1', 'Firstname:') |
61 | - ->setCellValue('A2', 'Lastname:') |
|
62 | - ->setCellValue('A3', 'Fullname:') |
|
63 | - ->setCellValue('B1', 'Maarten') |
|
64 | - ->setCellValue('B2', 'Balliauw') |
|
65 | - ->setCellValue('B3', '=B1 & " " & B2'); |
|
61 | + ->setCellValue('A2', 'Lastname:') |
|
62 | + ->setCellValue('A3', 'Fullname:') |
|
63 | + ->setCellValue('B1', 'Maarten') |
|
64 | + ->setCellValue('B2', 'Balliauw') |
|
65 | + ->setCellValue('B3', '=B1 & " " & B2'); |
|
66 | 66 | |
67 | 67 | // Define named ranges |
68 | 68 | echo date('H:i:s') , " Define named ranges" , EOL; |
@@ -86,11 +86,11 @@ discard block |
||
86 | 86 | echo date('H:i:s') , " Add some data" , EOL; |
87 | 87 | $objPHPExcel->setActiveSheetIndex(1); |
88 | 88 | $objPHPExcel->getActiveSheet()->setCellValue('A1', 'Firstname:') |
89 | - ->setCellValue('A2', 'Lastname:') |
|
90 | - ->setCellValue('A3', 'Fullname:') |
|
91 | - ->setCellValue('B1', '=PersonFN') |
|
92 | - ->setCellValue('B2', '=PersonLN') |
|
93 | - ->setCellValue('B3', '=PersonFN & " " & PersonLN'); |
|
89 | + ->setCellValue('A2', 'Lastname:') |
|
90 | + ->setCellValue('A3', 'Fullname:') |
|
91 | + ->setCellValue('B1', '=PersonFN') |
|
92 | + ->setCellValue('B2', '=PersonLN') |
|
93 | + ->setCellValue('B3', '=PersonFN & " " & PersonLN'); |
|
94 | 94 | |
95 | 95 | // Resolve range |
96 | 96 | echo date('H:i:s') , " Resolve range" , EOL; |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | ini_set('display_startup_errors', TRUE); |
32 | 32 | date_default_timezone_set('Europe/London'); |
33 | 33 | |
34 | -define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); |
|
34 | +define('EOL', (PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); |
|
35 | 35 | |
36 | 36 | date_default_timezone_set('Europe/London'); |
37 | 37 | |
@@ -40,11 +40,11 @@ discard block |
||
40 | 40 | |
41 | 41 | |
42 | 42 | // Create new PHPExcel object |
43 | -echo date('H:i:s') , " Create new PHPExcel object" , EOL; |
|
43 | +echo date('H:i:s'), " Create new PHPExcel object", EOL; |
|
44 | 44 | $objPHPExcel = new \PHPExcel\Spreadsheet(); |
45 | 45 | |
46 | 46 | // Set document properties |
47 | -echo date('H:i:s') , " Set document properties" , EOL; |
|
47 | +echo date('H:i:s'), " Set document properties", EOL; |
|
48 | 48 | $objPHPExcel->getProperties()->setCreator("Maarten Balliauw") |
49 | 49 | ->setLastModifiedBy("Maarten Balliauw") |
50 | 50 | ->setTitle("Office 2007 XLSX Test Document") |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | |
56 | 56 | |
57 | 57 | // Add some data |
58 | -echo date('H:i:s') , " Add some data" , EOL; |
|
58 | +echo date('H:i:s'), " Add some data", EOL; |
|
59 | 59 | $objPHPExcel->setActiveSheetIndex(0); |
60 | 60 | $objPHPExcel->getActiveSheet()->setCellValue('A1', 'Firstname:') |
61 | 61 | ->setCellValue('A2', 'Lastname:') |
@@ -65,25 +65,25 @@ discard block |
||
65 | 65 | ->setCellValue('B3', '=B1 & " " & B2'); |
66 | 66 | |
67 | 67 | // Define named ranges |
68 | -echo date('H:i:s') , " Define named ranges" , EOL; |
|
69 | -$objPHPExcel->addNamedRange( new \PHPExcel\NamedRange('PersonName', $objPHPExcel->getActiveSheet(), 'B1') ); |
|
70 | -$objPHPExcel->addNamedRange( new \PHPExcel\NamedRange('PersonLN', $objPHPExcel->getActiveSheet(), 'B2') ); |
|
68 | +echo date('H:i:s'), " Define named ranges", EOL; |
|
69 | +$objPHPExcel->addNamedRange(new \PHPExcel\NamedRange('PersonName', $objPHPExcel->getActiveSheet(), 'B1')); |
|
70 | +$objPHPExcel->addNamedRange(new \PHPExcel\NamedRange('PersonLN', $objPHPExcel->getActiveSheet(), 'B2')); |
|
71 | 71 | |
72 | 72 | // Rename named ranges |
73 | -echo date('H:i:s') , " Rename named ranges" , EOL; |
|
73 | +echo date('H:i:s'), " Rename named ranges", EOL; |
|
74 | 74 | $objPHPExcel->getNamedRange('PersonName')->setName('PersonFN'); |
75 | 75 | |
76 | 76 | // Rename worksheet |
77 | -echo date('H:i:s') , " Rename worksheet" , EOL; |
|
77 | +echo date('H:i:s'), " Rename worksheet", EOL; |
|
78 | 78 | $objPHPExcel->getActiveSheet()->setTitle('Person'); |
79 | 79 | |
80 | 80 | |
81 | 81 | // Create a new worksheet, after the default sheet |
82 | -echo date('H:i:s') , " Create new Worksheet object" , EOL; |
|
82 | +echo date('H:i:s'), " Create new Worksheet object", EOL; |
|
83 | 83 | $objPHPExcel->createSheet(); |
84 | 84 | |
85 | 85 | // Add some data to the second sheet, resembling some different data types |
86 | -echo date('H:i:s') , " Add some data" , EOL; |
|
86 | +echo date('H:i:s'), " Add some data", EOL; |
|
87 | 87 | $objPHPExcel->setActiveSheetIndex(1); |
88 | 88 | $objPHPExcel->getActiveSheet()->setCellValue('A1', 'Firstname:') |
89 | 89 | ->setCellValue('A2', 'Lastname:') |
@@ -93,13 +93,13 @@ discard block |
||
93 | 93 | ->setCellValue('B3', '=PersonFN & " " & PersonLN'); |
94 | 94 | |
95 | 95 | // Resolve range |
96 | -echo date('H:i:s') , " Resolve range" , EOL; |
|
97 | -echo 'Cell B1 {=PersonFN}: ' , $objPHPExcel->getActiveSheet()->getCell('B1')->getCalculatedValue() , EOL; |
|
98 | -echo 'Cell B3 {=PersonFN & " " & PersonLN}: ' , $objPHPExcel->getActiveSheet()->getCell('B3')->getCalculatedValue() , EOL; |
|
99 | -echo 'Cell Person!B1: ' , $objPHPExcel->getActiveSheet()->getCell('Person!B1')->getCalculatedValue() , EOL; |
|
96 | +echo date('H:i:s'), " Resolve range", EOL; |
|
97 | +echo 'Cell B1 {=PersonFN}: ', $objPHPExcel->getActiveSheet()->getCell('B1')->getCalculatedValue(), EOL; |
|
98 | +echo 'Cell B3 {=PersonFN & " " & PersonLN}: ', $objPHPExcel->getActiveSheet()->getCell('B3')->getCalculatedValue(), EOL; |
|
99 | +echo 'Cell Person!B1: ', $objPHPExcel->getActiveSheet()->getCell('Person!B1')->getCalculatedValue(), EOL; |
|
100 | 100 | |
101 | 101 | // Rename worksheet |
102 | -echo date('H:i:s') , " Rename worksheet" , EOL; |
|
102 | +echo date('H:i:s'), " Rename worksheet", EOL; |
|
103 | 103 | $objPHPExcel->getActiveSheet()->setTitle('Person (cloned)'); |
104 | 104 | |
105 | 105 | // Set active sheet index to the first sheet, so Excel opens this as the first sheet |
@@ -107,7 +107,7 @@ discard block |
||
107 | 107 | |
108 | 108 | |
109 | 109 | // Save Excel 2007 file |
110 | -echo date('H:i:s') , " Write to Excel2007 format" , EOL; |
|
110 | +echo date('H:i:s'), " Write to Excel2007 format", EOL; |
|
111 | 111 | $callStartTime = microtime(true); |
112 | 112 | |
113 | 113 | $objWriter = \PHPExcel\IOFactory::createWriter($objPHPExcel, 'Excel2007'); |
@@ -115,15 +115,15 @@ discard block |
||
115 | 115 | $callEndTime = microtime(true); |
116 | 116 | $callTime = $callEndTime - $callStartTime; |
117 | 117 | |
118 | -echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; |
|
119 | -echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; |
|
118 | +echo date('H:i:s'), " File written to ", str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)), EOL; |
|
119 | +echo 'Call time to write Workbook was ', sprintf('%.4f', $callTime), " seconds", EOL; |
|
120 | 120 | // Echo memory usage |
121 | -echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; |
|
121 | +echo date('H:i:s'), ' Current memory usage: ', (memory_get_usage(true) / 1024 / 1024), " MB", EOL; |
|
122 | 122 | |
123 | 123 | |
124 | 124 | // Echo memory peak usage |
125 | -echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; |
|
125 | +echo date('H:i:s'), " Peak memory usage: ", (memory_get_peak_usage(true) / 1024 / 1024), " MB", EOL; |
|
126 | 126 | |
127 | 127 | // Echo done |
128 | -echo date('H:i:s') , " Done writing file" , EOL; |
|
129 | -echo 'File has been created in ' , getcwd() , EOL; |
|
128 | +echo date('H:i:s'), " Done writing file", EOL; |
|
129 | +echo 'File has been created in ', getcwd(), EOL; |