PhpSpreadsheet/docs/Examples/Reading WorkBook Data/exampleWorkBookReader01.php

89 lines
2.9 KiB
PHP
Raw Normal View History

<?php
use PhpOffice\PhpSpreadsheet\IOFactory;
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" />
2017-03-24 13:09:32 +00:00
<title>PhpSpreadsheet Reading WorkBook Data Example #01</title>
</head>
<body>
2017-03-24 13:09:32 +00:00
<h1>PhpSpreadsheet Reading WorkBook Data Example #01</h1>
<h2>Read the WorkBook Properties</h2>
<?php
2017-03-24 13:09:32 +00:00
require_once __DIR__ . '/../../../src/Bootstrap.php';
2016-10-06 11:49:41 +00:00
$inputFileType = 'Xls';
$inputFileName = './sampleData/example1.xls';
/* Create a new Reader of the type defined in $inputFileType **/
$reader = IOFactory::createReader($inputFileType);
2017-03-24 13:09:32 +00:00
/* Load $inputFileName to a PhpSpreadsheet Object **/
$spreadsheet = $reader->load($inputFileName);
echo '<hr />';
/* Read the document's creator property **/
2016-11-27 15:51:44 +00:00
$creator = $spreadsheet->getProperties()->getCreator();
echo '<b>Document Creator: </b>',$creator,'<br />';
/* Read the Date when the workbook was created (as a PHP timestamp value) **/
2016-11-27 15:51:44 +00:00
$creationDatestamp = $spreadsheet->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 **/
2016-11-27 15:51:44 +00:00
$modifiedBy = $spreadsheet->getProperties()->getLastModifiedBy();
echo '<b>Last Modified By: </b>',$modifiedBy,'<br />';
/* Read the Date when the workbook was last modified (as a PHP timestamp value) **/
2016-11-27 15:51:44 +00:00
$modifiedDatestamp = $spreadsheet->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 **/
2016-11-27 15:51:44 +00:00
$workbookTitle = $spreadsheet->getProperties()->getTitle();
echo '<b>Title: </b>',$workbookTitle,'<br />';
/* Read the workbook description property **/
2016-11-27 15:51:44 +00:00
$description = $spreadsheet->getProperties()->getDescription();
echo '<b>Description: </b>',$description,'<br />';
/* Read the workbook subject property **/
2016-11-27 15:51:44 +00:00
$subject = $spreadsheet->getProperties()->getSubject();
echo '<b>Subject: </b>',$subject,'<br />';
/* Read the workbook keywords property **/
2016-11-27 15:51:44 +00:00
$keywords = $spreadsheet->getProperties()->getKeywords();
echo '<b>Keywords: </b>',$keywords,'<br />';
/* Read the workbook category property **/
2016-11-27 15:51:44 +00:00
$category = $spreadsheet->getProperties()->getCategory();
echo '<b>Category: </b>',$category,'<br />';
/* Read the workbook company property **/
2016-11-27 15:51:44 +00:00
$company = $spreadsheet->getProperties()->getCompany();
echo '<b>Company: </b>',$company,'<br />';
/* Read the workbook manager property **/
2016-11-27 15:51:44 +00:00
$manager = $spreadsheet->getProperties()->getManager();
echo '<b>Manager: </b>',$manager,'<br />';
?>
<body>
</html>