Skip to content

Commit aeec8ef

Browse files
author
Mark Baker
committed
Fix to clone worksheet
1 parent 88751b3 commit aeec8ef

File tree

3 files changed

+120
-1
lines changed

3 files changed

+120
-1
lines changed

Classes/PHPExcel/CachedObjectStorage/Memory.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ public function copyCellCollection(PHPExcel_Worksheet $parent) {
9696
$newCollection = array();
9797
foreach($this->_cellCache as $k => &$cell) {
9898
$newCollection[$k] = clone $cell;
99-
$newCollection[$k]->attach($parent);
99+
$newCollection[$k]->attach($this);
100100
}
101101

102102
$this->_cellCache = $newCollection;

Examples/38cloneWorksheet.php

+118
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,118 @@
1+
<?php
2+
/**
3+
* PHPExcel
4+
*
5+
* Copyright (C) 2006 - 2013 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 - 2013 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 '../Classes/PHPExcel.php';
38+
39+
40+
// Create new PHPExcel object
41+
echo date('H:i:s') , " Create new PHPExcel object" , EOL;
42+
$objPHPExcel = new PHPExcel();
43+
44+
// Set document properties
45+
echo date('H:i:s') , " Set document properties" , EOL;
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");
53+
54+
55+
// Add some data
56+
echo date('H:i:s') , " Add some data" , EOL;
57+
$objPHPExcel->setActiveSheetIndex(0)
58+
->setCellValue('A1', 'Hello')
59+
->setCellValue('B2', 'world!')
60+
->setCellValue('C1', 'Hello')
61+
->setCellValue('D2', 'world!');
62+
63+
// Miscellaneous glyphs, UTF-8
64+
$objPHPExcel->setActiveSheetIndex(0)
65+
->setCellValue('A4', 'Miscellaneous glyphs')
66+
->setCellValue('A5', 'éàèùâêîôûëïüÿäöüç');
67+
68+
69+
$objPHPExcel->getActiveSheet()->setCellValue('A8',"Hello\nWorld");
70+
$objPHPExcel->getActiveSheet()->getRowDimension(8)->setRowHeight(-1);
71+
$objPHPExcel->getActiveSheet()->getStyle('A8')->getAlignment()->setWrapText(true);
72+
73+
74+
// Rename worksheet
75+
echo date('H:i:s') , " Rename worksheet" , EOL;
76+
$objPHPExcel->getActiveSheet()->setTitle('Simple');
77+
78+
79+
// Clone worksheet
80+
echo date('H:i:s') , " Clone worksheet" , EOL;
81+
$clonedSheet = clone $objPHPExcel->getActiveSheet();
82+
$clonedSheet
83+
->setCellValue('A1', 'Goodbye')
84+
->setCellValue('A2', 'cruel')
85+
->setCellValue('C1', 'Goodbye')
86+
->setCellValue('C2', 'cruel');
87+
88+
// Rename cloned worksheet
89+
echo date('H:i:s') , " Rename cloned worksheet" , EOL;
90+
$clonedSheet->setTitle('Simple Clone');
91+
$objPHPExcel->addSheet($clonedSheet);
92+
93+
94+
// Set active sheet index to the first sheet, so Excel opens this as the first sheet
95+
$objPHPExcel->setActiveSheetIndex(0);
96+
97+
98+
// Save Excel 2007 file
99+
echo date('H:i:s') , " Write to Excel2007 format" , EOL;
100+
$callStartTime = microtime(true);
101+
102+
$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007');
103+
$objWriter->save(str_replace('.php', '.xlsx', __FILE__));
104+
$callEndTime = microtime(true);
105+
$callTime = $callEndTime - $callStartTime;
106+
107+
echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL;
108+
echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL;
109+
// Echo memory usage
110+
echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL;
111+
112+
113+
// Echo memory peak usage
114+
echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL;
115+
116+
// Echo done
117+
echo date('H:i:s') , " Done writing files" , EOL;
118+
echo 'File has been created in ' , getcwd() , EOL;

Examples/runall.php

+1
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@
9090
, '35chartrender.php'
9191
, '36chartreadwriteHTML.php'
9292
, '37page_layout_view.php'
93+
, '38cloneWorksheet.php'
9394
, '40duplicateStyle.php'
9495
, 'OOCalcReader.php'
9596
, 'SylkReader.php'

0 commit comments

Comments
 (0)