$76 GRAYBYTE WORDPRESS FILE MANAGER $99

SERVER : vnpttt-amd7f72-h1.vietnix.vn #1 SMP Fri May 24 12:42:50 UTC 2024
SERVER IP : 103.200.23.149 | ADMIN IP 216.73.216.22
OPTIONS : CRL = ON | WGT = ON | SDO = OFF | PKEX = OFF
DEACTIVATED : NONE

/home/bqrcodec/contact.rohto.com.vn/wp-content/phpexcel/PHPExcel-1.8/Examples/

HOME
Current File : /home/bqrcodec/contact.rohto.com.vn/wp-content/phpexcel/PHPExcel-1.8/Examples//32chartreadwrite.php
<?php

/** Error reporting */
error_reporting(E_ALL);
ini_set('display_errors', TRUE);
ini_set('display_startup_errors', TRUE);
date_default_timezone_set('Europe/London');

define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />');

date_default_timezone_set('Europe/London');

/**
 * PHPExcel
 *
 * Copyright (c) 2006 - 2015 PHPExcel
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 *
 * @category   PHPExcel
 * @package    PHPExcel
 * @copyright  Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel)
 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt	LGPL
 * @version    ##VERSION##, ##DATE##
 */

/** Include path **/
set_include_path(get_include_path() . PATH_SEPARATOR . dirname(__FILE__) . '/../Classes/');

/** PHPExcel_IOFactory */
include 'PHPExcel/IOFactory.php';

$inputFileType = 'Excel2007';
$inputFileNames = 'templates/32readwrite*[0-9].xlsx';

if ((isset($argc)) && ($argc > 1)) {
	$inputFileNames = array();
	for($i = 1; $i < $argc; ++$i) {
		$inputFileNames[] = dirname(__FILE__) . '/templates/' . $argv[$i];
	}
} else {
	$inputFileNames = glob($inputFileNames);
}
foreach($inputFileNames as $inputFileName) {
	$inputFileNameShort = basename($inputFileName);

	if (!file_exists($inputFileName)) {
		echo date('H:i:s') , " File " , $inputFileNameShort , ' does not exist' , EOL;
		continue;
	}

	echo date('H:i:s') , " Load Test from $inputFileType file " , $inputFileNameShort , EOL;

	$objReader = PHPExcel_IOFactory::createReader($inputFileType);
	$objReader->setIncludeCharts(TRUE);
	$objPHPExcel = $objReader->load($inputFileName);


	echo date('H:i:s') , " Iterate worksheets looking at the charts" , EOL;
	foreach ($objPHPExcel->getWorksheetIterator() as $worksheet) {
		$sheetName = $worksheet->getTitle();
		echo 'Worksheet: ' , $sheetName , EOL;

		$chartNames = $worksheet->getChartNames();
		if(empty($chartNames)) {
			echo '    There are no charts in this worksheet' , EOL;
		} else {
			natsort($chartNames);
			foreach($chartNames as $i => $chartName) {
				$chart = $worksheet->getChartByName($chartName);
				if (!is_null($chart->getTitle())) {
					$caption = '"' . implode(' ',$chart->getTitle()->getCaption()) . '"';
				} else {
					$caption = 'Untitled';
				}
				echo '    ' , $chartName , ' - ' , $caption , EOL;
				echo str_repeat(' ',strlen($chartName)+3);
				$groupCount = $chart->getPlotArea()->getPlotGroupCount();
				if ($groupCount == 1) {
					$chartType = $chart->getPlotArea()->getPlotGroupByIndex(0)->getPlotType();
					echo '    ' , $chartType , EOL;
				} else {
					$chartTypes = array();
					for($i = 0; $i < $groupCount; ++$i) {
						$chartTypes[] = $chart->getPlotArea()->getPlotGroupByIndex($i)->getPlotType();
					}
					$chartTypes = array_unique($chartTypes);
					if (count($chartTypes) == 1) {
						$chartType = 'Multiple Plot ' . array_pop($chartTypes);
						echo '    ' , $chartType , EOL;
					} elseif (count($chartTypes) == 0) {
						echo '    *** Type not yet implemented' , EOL;
					} else {
						echo '    Combination Chart' , EOL;
					}
				}
			}
		}
	}


	$outputFileName = basename($inputFileName);

	echo date('H:i:s') , " Write Tests to Excel2007 file " , EOL;
	$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007');
	$objWriter->setIncludeCharts(TRUE);
	$objWriter->save($outputFileName);
	echo date('H:i:s') , " File written to " , $outputFileName , EOL;

	$objPHPExcel->disconnectWorksheets();
	unset($objPHPExcel);
}

// Echo memory peak usage
echo date('H:i:s') , ' Peak memory usage: ' , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL;

// Echo done
echo date('H:i:s') , " Done writing files" , EOL;
echo 'Files have been created in ' , getcwd() , EOL;

Current_dir [ WRITEABLE ] Document_root [ WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
6 Mar 2024 12.54 PM
bqrcodec / bqrcodec
0755
data
--
6 Mar 2024 12.54 PM
bqrcodec / bqrcodec
0755
images
--
6 Mar 2024 12.54 PM
bqrcodec / bqrcodec
0755
templates
--
6 Mar 2024 12.54 PM
bqrcodec / bqrcodec
0755
.gitignore
0.03 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
01pharSimple.php
4.092 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
01simple-download-ods.php
3.212 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
01simple-download-pdf.php
3.483 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
01simple-download-xls.php
3.179 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
01simple-download-xlsx.php
3.226 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
01simple.php
4.654 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
01simplePCLZip.php
3.839 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
02types-xls.php
7.698 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
02types.php
8.332 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
03formulas.php
6.441 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
04printing.php
5.033 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
05featuredemo.inc.php
18.166 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
05featuredemo.php
2.904 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
06largescale-with-cellcaching-sqlite.php
4.863 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
06largescale-with-cellcaching-sqlite3.php
4.864 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
06largescale-with-cellcaching.php
4.804 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
06largescale-xls.php
4.712 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
06largescale.php
4.722 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
07reader.php
2.72 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
07readerPCLZip.php
2.854 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
08conditionalformatting.php
8.15 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
08conditionalformatting2.php
5.203 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
09pagebreaks.php
5.012 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
10autofilter-selection-1.php
8.269 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
10autofilter-selection-2.php
8.062 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
10autofilter-selection-display.php
7.351 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
10autofilter.php
7.515 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
11documentsecurity-xls.php
4.095 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
11documentsecurity.php
4.104 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
12cellProtection.php
3.73 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
13calculation.php
10.838 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
13calculationCyclicFormulae.php
3.826 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
14excel5.php
2.253 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
15datavalidation-xls.php
6.289 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
15datavalidation.php
6.354 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
16csv.php
4.446 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
17html.php
2.353 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
18extendedcalculation.php
4.298 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
19namedrange.php
5.193 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
20readexcel5.php
2.871 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
21pdf.php
3.335 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
22heavilyformatted.php
4.178 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
23sharedstyles.php
4.498 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
24readfilter.php
2.546 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
25inmemoryimage.php
3.561 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
26utf8.php
4.826 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
27imagesexcel5.php
2.438 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
28iterator.php
2.834 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
29advancedvaluebinder.php
7.514 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
30template.php
3.146 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
31docproperties_write-xls.php
4.94 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
31docproperties_write.php
4.97 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
32chartreadwrite.php
4.437 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
33chartcreate-area.php
4.547 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
33chartcreate-bar-stacked.php
4.678 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
33chartcreate-bar.php
4.684 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
33chartcreate-column-2.php
5.191 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
33chartcreate-column.php
4.686 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
33chartcreate-composite.php
6.252 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
33chartcreate-line.php
4.524 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
33chartcreate-multiple-charts.php
7.026 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
33chartcreate-pie.php
6.408 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
33chartcreate-radar.php
4.946 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
33chartcreate-scatter.php
4.569 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
33chartcreate-stock.php
5.124 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
34chartupdate.php
2.595 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
35chartrender.php
4.11 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
36chartreadwriteHTML.php
4.86 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
36chartreadwritePDF.php
5.593 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
37page_layout_view.php
3.22 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
38cloneWorksheet.php
4.126 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
39dropdown.php
5.835 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
40duplicateStyle.php
1.672 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
41password.php
3.11 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
42richText.php
5.398 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
43mergeWorkbooks.php
3.354 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
44worksheetInfo.php
1.875 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
Excel2003XMLReader.php
2.256 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
Excel2003XMLTest.xml
937.047 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
GnumericReader.php
2.255 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
GnumericTest.gnumeric
7.64 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
OOCalcReader.php
2.246 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
OOCalcReaderPCLZip.php
2.321 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
OOCalcTest.ods
17.511 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
Quadratic.php
2.309 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
Quadratic.xlsx
8.699 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
Quadratic2.php
2.354 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
SylkReader.php
1.859 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
SylkTest.slk
2.273 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
XMLReader.php
2.261 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
XMLTest.xml
20.294 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644
runall.php
3.723 KB
13 May 2025 5.01 PM
bqrcodec / bqrcodec
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME
Static GIF