"Fossies" - the Fresh Open Source Software Archive 
Member "groupoffice-6.4.210-php-71/vendor/phpoffice/phpexcel/Examples/01simple.php" (22 Nov 2018, 4766 Bytes) of package /linux/www/groupoffice-6.4.210-php-71.tar.gz:
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) PHP source code syntax highlighting (style:
standard) with prefixed line numbers and
code folding option.
Alternatively you can here
view or
download the uninterpreted source code file.
1 <?php
2 /**
3 * PHPExcel
4 *
5 * Copyright (c) 2006 - 2015 PHPExcel
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 *
21 * @category PHPExcel
22 * @package PHPExcel
23 * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel)
24 * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
25 * @version ##VERSION##, ##DATE##
26 */
27
28 /** Error reporting */
29 error_reporting(E_ALL);
30 ini_set('display_errors', TRUE);
31 ini_set('display_startup_errors', TRUE);
32 date_default_timezone_set('Europe/London');
33
34 define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />');
35
36 /** Include PHPExcel */
37 require_once dirname(__FILE__) . '/../Classes/PHPExcel.php';
38
39 // Create new PHPExcel object
40 echo date('H:i:s') , " Create new PHPExcel object" , EOL;
41 $objPHPExcel = new PHPExcel();
42
43 // Set document properties
44 echo date('H:i:s') , " Set document properties" , EOL;
45 $objPHPExcel->getProperties()->setCreator("Maarten Balliauw")
46 ->setLastModifiedBy("Maarten Balliauw")
47 ->setTitle("PHPExcel Test Document")
48 ->setSubject("PHPExcel Test Document")
49 ->setDescription("Test document for PHPExcel, generated using PHP classes.")
50 ->setKeywords("office PHPExcel php")
51 ->setCategory("Test result file");
52
53
54 // Add some data
55 echo date('H:i:s') , " Add some data" , EOL;
56 $objPHPExcel->setActiveSheetIndex(0)
57 ->setCellValue('A1', 'Hello')
58 ->setCellValue('B2', 'world!')
59 ->setCellValue('C1', 'Hello')
60 ->setCellValue('D2', 'world!');
61
62 // Miscellaneous glyphs, UTF-8
63 $objPHPExcel->setActiveSheetIndex(0)
64 ->setCellValue('A4', 'Miscellaneous glyphs')
65 ->setCellValue('A5', 'éàèùâêîôûëïüÿäöüç');
66
67
68 $objPHPExcel->getActiveSheet()->setCellValue('A8',"Hello\nWorld");
69 $objPHPExcel->getActiveSheet()->getRowDimension(8)->setRowHeight(-1);
70 $objPHPExcel->getActiveSheet()->getStyle('A8')->getAlignment()->setWrapText(true);
71
72
73 $value = "-ValueA\n-Value B\n-Value C";
74 $objPHPExcel->getActiveSheet()->setCellValue('A10', $value);
75 $objPHPExcel->getActiveSheet()->getRowDimension(10)->setRowHeight(-1);
76 $objPHPExcel->getActiveSheet()->getStyle('A10')->getAlignment()->setWrapText(true);
77 $objPHPExcel->getActiveSheet()->getStyle('A10')->setQuotePrefix(true);
78
79
80
81 // Rename worksheet
82 echo date('H:i:s') , " Rename worksheet" , EOL;
83 $objPHPExcel->getActiveSheet()->setTitle('Simple');
84
85
86 // Set active sheet index to the first sheet, so Excel opens this as the first sheet
87 $objPHPExcel->setActiveSheetIndex(0);
88
89
90 // Save Excel 2007 file
91 echo date('H:i:s') , " Write to Excel2007 format" , EOL;
92 $callStartTime = microtime(true);
93
94 $objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007');
95 $objWriter->save(str_replace('.php', '.xlsx', __FILE__));
96 $callEndTime = microtime(true);
97 $callTime = $callEndTime - $callStartTime;
98
99 echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL;
100 echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL;
101 // Echo memory usage
102 echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL;
103
104
105 // Save Excel 95 file
106 echo date('H:i:s') , " Write to Excel5 format" , EOL;
107 $callStartTime = microtime(true);
108
109 $objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5');
110 $objWriter->save(str_replace('.php', '.xls', __FILE__));
111 $callEndTime = microtime(true);
112 $callTime = $callEndTime - $callStartTime;
113
114 echo date('H:i:s') , " File written to " , str_replace('.php', '.xls', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL;
115 echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL;
116 // Echo memory usage
117 echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL;
118
119
120 // Echo memory peak usage
121 echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL;
122
123 // Echo done
124 echo date('H:i:s') , " Done writing files" , EOL;
125 echo 'Files have been created in ' , getcwd() , EOL;