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