PhpSpreadsheet Reading WorkBook Data Example #01
Read the WorkBook Properties
load($inputFileName);
echo '
';
/* Read the document's creator property * */
$creator = $spreadsheet->getProperties()->getCreator();
echo 'Document Creator: ', $creator, '
';
/* Read the Date when the workbook was created (as a PHP timestamp value) * */
$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 'Created On: ', $creationDate, ' at ', $creationTime, '
';
/* Read the name of the last person to modify this workbook * */
$modifiedBy = $spreadsheet->getProperties()->getLastModifiedBy();
echo 'Last Modified By: ', $modifiedBy, '
';
/* Read the Date when the workbook was last modified (as a PHP timestamp value) * */
$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 'Last Modified On: ', $modifiedDate, ' at ', $modifiedTime, '
';
/* Read the workbook title property * */
$workbookTitle = $spreadsheet->getProperties()->getTitle();
echo 'Title: ', $workbookTitle, '
';
/* Read the workbook description property * */
$description = $spreadsheet->getProperties()->getDescription();
echo 'Description: ', $description, '
';
/* Read the workbook subject property * */
$subject = $spreadsheet->getProperties()->getSubject();
echo 'Subject: ', $subject, '
';
/* Read the workbook keywords property * */
$keywords = $spreadsheet->getProperties()->getKeywords();
echo 'Keywords: ', $keywords, '
';
/* Read the workbook category property * */
$category = $spreadsheet->getProperties()->getCategory();
echo 'Category: ', $category, '
';
/* Read the workbook company property * */
$company = $spreadsheet->getProperties()->getCompany();
echo 'Company: ', $company, '
';
/* Read the workbook manager property * */
$manager = $spreadsheet->getProperties()->getManager();
echo 'Manager: ', $manager, '
';
?>