Examples of accessing Workbook Properties
git-svn-id: https://phpexcel.svn.codeplex.com/svn/trunk@62544 2327b42d-5241-43d6-9e2a-de5ac946f064
This commit is contained in:
parent
46d83f9757
commit
14dbe6ec72
|
@ -0,0 +1,93 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
error_reporting(E_ALL);
|
||||||
|
set_time_limit(0);
|
||||||
|
|
||||||
|
date_default_timezone_set('Europe/London');
|
||||||
|
|
||||||
|
?>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||||
|
|
||||||
|
<title>PHPExcel Reading WorkBook Data Example #01</title>
|
||||||
|
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<h1>PHPExcel Reading WorkBook Data Example #01</h1>
|
||||||
|
<h2>Read the WorkBook Properties</h2>
|
||||||
|
<?php
|
||||||
|
|
||||||
|
/** Include path **/
|
||||||
|
set_include_path(get_include_path() . PATH_SEPARATOR . '../../../Classes/');
|
||||||
|
|
||||||
|
/** PHPExcel_IOFactory */
|
||||||
|
include 'PHPExcel/IOFactory.php';
|
||||||
|
|
||||||
|
|
||||||
|
$inputFileType = 'Excel5';
|
||||||
|
$inputFileName = './sampleData/example1.xls';
|
||||||
|
|
||||||
|
/** Create a new Reader of the type defined in $inputFileType **/
|
||||||
|
$objReader = PHPExcel_IOFactory::createReader($inputFileType);
|
||||||
|
/** Load $inputFileName to a PHPExcel Object **/
|
||||||
|
$objPHPExcel = $objReader->load($inputFileName);
|
||||||
|
|
||||||
|
|
||||||
|
echo '<hr />';
|
||||||
|
|
||||||
|
/** Read the document's creator property **/
|
||||||
|
$creator = $objPHPExcel->getProperties()->getCreator();
|
||||||
|
echo '<b>Document Creator: </b>',$creator,'<br />';
|
||||||
|
|
||||||
|
/** Read the Date when the workbook was created (as a PHP timestamp value) **/
|
||||||
|
$creationDatestamp = $objPHPExcel->getProperties()->getCreated();
|
||||||
|
/** Format the date and time using the standard PHP date() function **/
|
||||||
|
$creationDate = date('l, d<\s\up>S</\s\up> F Y',$creationDatestamp);
|
||||||
|
$creationTime = date('g:i A',$creationDatestamp);
|
||||||
|
echo '<b>Created On: </b>',$creationDate,' at ',$creationTime,'<br />';
|
||||||
|
|
||||||
|
/** Read the name of the last person to modify this workbook **/
|
||||||
|
$modifiedBy = $objPHPExcel->getProperties()->getLastModifiedBy();
|
||||||
|
echo '<b>Last Modified By: </b>',$modifiedBy,'<br />';
|
||||||
|
|
||||||
|
/** Read the Date when the workbook was last modified (as a PHP timestamp value) **/
|
||||||
|
$modifiedDatestamp = $objPHPExcel->getProperties()->getModified();
|
||||||
|
/** Format the date and time using the standard PHP date() function **/
|
||||||
|
$modifiedDate = date('l, d<\s\up>S</\s\up> F Y',$modifiedDatestamp);
|
||||||
|
$modifiedTime = date('g:i A',$modifiedDatestamp);
|
||||||
|
echo '<b>Last Modified On: </b>',$modifiedDate,' at ',$modifiedTime,'<br />';
|
||||||
|
|
||||||
|
/** Read the workbook title property **/
|
||||||
|
$workbookTitle = $objPHPExcel->getProperties()->getTitle();
|
||||||
|
echo '<b>Title: </b>',$workbookTitle,'<br />';
|
||||||
|
|
||||||
|
/** Read the workbook description property **/
|
||||||
|
$description = $objPHPExcel->getProperties()->getDescription();
|
||||||
|
echo '<b>Description: </b>',$description,'<br />';
|
||||||
|
|
||||||
|
/** Read the workbook subject property **/
|
||||||
|
$subject = $objPHPExcel->getProperties()->getSubject();
|
||||||
|
echo '<b>Subject: </b>',$subject,'<br />';
|
||||||
|
|
||||||
|
/** Read the workbook keywords property **/
|
||||||
|
$keywords = $objPHPExcel->getProperties()->getKeywords();
|
||||||
|
echo '<b>Keywords: </b>',$keywords,'<br />';
|
||||||
|
|
||||||
|
/** Read the workbook category property **/
|
||||||
|
$category = $objPHPExcel->getProperties()->getCategory();
|
||||||
|
echo '<b>Category: </b>',$category,'<br />';
|
||||||
|
|
||||||
|
/** Read the workbook company property **/
|
||||||
|
$company = $objPHPExcel->getProperties()->getCompany();
|
||||||
|
echo '<b>Company: </b>',$company,'<br />';
|
||||||
|
|
||||||
|
/** Read the workbook manager property **/
|
||||||
|
$manager = $objPHPExcel->getProperties()->getManager();
|
||||||
|
echo '<b>Manager: </b>',$manager,'<br />';
|
||||||
|
|
||||||
|
|
||||||
|
?>
|
||||||
|
<body>
|
||||||
|
</html>
|
|
@ -0,0 +1,52 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
error_reporting(E_ALL);
|
||||||
|
set_time_limit(0);
|
||||||
|
|
||||||
|
date_default_timezone_set('Europe/London');
|
||||||
|
|
||||||
|
?>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||||
|
|
||||||
|
<title>PHPExcel Reading WorkBook Data Example #02</title>
|
||||||
|
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<h1>PHPExcel Reading WorkBook Data Example #02</h1>
|
||||||
|
<h2>Read a list of Custom Properties for a WorkBook</h2>
|
||||||
|
<?php
|
||||||
|
|
||||||
|
/** Include path **/
|
||||||
|
set_include_path(get_include_path() . PATH_SEPARATOR . '../../../Classes/');
|
||||||
|
|
||||||
|
/** PHPExcel_IOFactory */
|
||||||
|
include 'PHPExcel/IOFactory.php';
|
||||||
|
|
||||||
|
|
||||||
|
$inputFileType = 'Excel2007';
|
||||||
|
$inputFileName = './sampleData/example1.xlsx';
|
||||||
|
|
||||||
|
/** Create a new Reader of the type defined in $inputFileType **/
|
||||||
|
$objReader = PHPExcel_IOFactory::createReader($inputFileType);
|
||||||
|
/** Load $inputFileName to a PHPExcel Object **/
|
||||||
|
$objPHPExcel = $objReader->load($inputFileName);
|
||||||
|
|
||||||
|
|
||||||
|
echo '<hr />';
|
||||||
|
|
||||||
|
/** Read an array list of any custom properties for this document **/
|
||||||
|
$customPropertyList = $objPHPExcel->getProperties()->getCustomProperties();
|
||||||
|
|
||||||
|
echo '<b>Custom Property names: </b><br />';
|
||||||
|
foreach($customPropertyList as $customPropertyName) {
|
||||||
|
echo $customPropertyName,'<br />';
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
?>
|
||||||
|
<body>
|
||||||
|
</html>
|
|
@ -0,0 +1,80 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
error_reporting(E_ALL);
|
||||||
|
set_time_limit(0);
|
||||||
|
|
||||||
|
date_default_timezone_set('Europe/London');
|
||||||
|
|
||||||
|
?>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||||
|
|
||||||
|
<title>PHPExcel Reading WorkBook Data Example #03</title>
|
||||||
|
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<h1>PHPExcel Reading WorkBook Data Example #03</h1>
|
||||||
|
<h2>Read Custom Property Values for a WorkBook</h2>
|
||||||
|
<?php
|
||||||
|
|
||||||
|
/** Include path **/
|
||||||
|
set_include_path(get_include_path() . PATH_SEPARATOR . '../../../Classes/');
|
||||||
|
|
||||||
|
/** PHPExcel_IOFactory */
|
||||||
|
include 'PHPExcel/IOFactory.php';
|
||||||
|
|
||||||
|
|
||||||
|
$inputFileType = 'Excel2007';
|
||||||
|
$inputFileName = './sampleData/example1.xlsx';
|
||||||
|
|
||||||
|
/** Create a new Reader of the type defined in $inputFileType **/
|
||||||
|
$objReader = PHPExcel_IOFactory::createReader($inputFileType);
|
||||||
|
/** Load $inputFileName to a PHPExcel Object **/
|
||||||
|
$objPHPExcel = $objReader->load($inputFileName);
|
||||||
|
|
||||||
|
|
||||||
|
echo '<hr />';
|
||||||
|
|
||||||
|
/** Read an array list of any custom properties for this document **/
|
||||||
|
$customPropertyList = $objPHPExcel->getProperties()->getCustomProperties();
|
||||||
|
|
||||||
|
echo '<b>Custom Properties: </b><br />';
|
||||||
|
/** Loop through the list of custom properties **/
|
||||||
|
foreach($customPropertyList as $customPropertyName) {
|
||||||
|
echo '<b>',$customPropertyName,': </b>';
|
||||||
|
/** Retrieve the property value **/
|
||||||
|
$propertyValue = $objPHPExcel->getProperties()->getCustomPropertyValue($customPropertyName);
|
||||||
|
/** Retrieve the property type **/
|
||||||
|
$propertyType = $objPHPExcel->getProperties()->getCustomPropertyType($customPropertyName);
|
||||||
|
|
||||||
|
/** Manipulate properties as appropriate for display purposes **/
|
||||||
|
switch($propertyType) {
|
||||||
|
case 'i' : // integer
|
||||||
|
$propertyType = 'integer number';
|
||||||
|
break;
|
||||||
|
case 'f' : // float
|
||||||
|
$propertyType = 'floating point number';
|
||||||
|
break;
|
||||||
|
case 's' : // string
|
||||||
|
$propertyType = 'string';
|
||||||
|
break;
|
||||||
|
case 'd' : // date
|
||||||
|
$propertyValue = date('l, d<\s\up>S</\s\up> F Y g:i A',$propertyValue);
|
||||||
|
$propertyType = 'date';
|
||||||
|
break;
|
||||||
|
case 'b' : // boolean
|
||||||
|
$propertyValue = ($propertyValue) ? 'TRUE' : 'FALSE';
|
||||||
|
$propertyType = 'boolean';
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
echo $propertyValue,' (',$propertyType,')<br />';
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
?>
|
||||||
|
<body>
|
||||||
|
</html>
|
|
@ -0,0 +1,55 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
error_reporting(E_ALL);
|
||||||
|
set_time_limit(0);
|
||||||
|
|
||||||
|
date_default_timezone_set('Europe/London');
|
||||||
|
|
||||||
|
?>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||||
|
|
||||||
|
<title>PHPExcel Reading WorkBook Data Example #04</title>
|
||||||
|
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<h1>PHPExcel Reading WorkBook Data Example #04</h1>
|
||||||
|
<h2>Get a List of the Worksheets in a WorkBook</h2>
|
||||||
|
<?php
|
||||||
|
|
||||||
|
/** Include path **/
|
||||||
|
set_include_path(get_include_path() . PATH_SEPARATOR . '../../../Classes/');
|
||||||
|
|
||||||
|
/** PHPExcel_IOFactory */
|
||||||
|
include 'PHPExcel/IOFactory.php';
|
||||||
|
|
||||||
|
|
||||||
|
$inputFileType = 'Excel5';
|
||||||
|
$inputFileName = './sampleData/example2.xls';
|
||||||
|
|
||||||
|
/** Create a new Reader of the type defined in $inputFileType **/
|
||||||
|
$objReader = PHPExcel_IOFactory::createReader($inputFileType);
|
||||||
|
/** Load $inputFileName to a PHPExcel Object **/
|
||||||
|
$objPHPExcel = $objReader->load($inputFileName);
|
||||||
|
|
||||||
|
|
||||||
|
echo '<hr />';
|
||||||
|
|
||||||
|
echo 'Reading the number of Worksheets in the WorkBook<br />';
|
||||||
|
/** Use the PHPExcel object's getSheetCount() method to get a count of the number of WorkSheets in the WorkBook */
|
||||||
|
$sheetCount = $objPHPExcel->getSheetCount();
|
||||||
|
echo 'There ',(($sheetCount == 1) ? 'is' : 'are'),' ',$sheetCount,' WorkSheet',(($sheetCount == 1) ? '' : 's'),' in the WorkBook<br /><br />';
|
||||||
|
|
||||||
|
echo 'Reading the names of Worksheets in the WorkBook<br />';
|
||||||
|
/** Use the PHPExcel object's getSheetNames() method to get an array listing the names/titles of the WorkSheets in the WorkBook */
|
||||||
|
$sheetNames = $objPHPExcel->getSheetNames();
|
||||||
|
foreach($sheetNames as $sheetIndex => $sheetName) {
|
||||||
|
echo 'WorkSheet #',$sheetIndex,' is named "',$sheetName,'"<br />';
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
?>
|
||||||
|
<body>
|
||||||
|
</html>
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue