| 
									
										
										
										
											2010-10-20 21:55:40 +00:00
										 |  |  | <?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/'); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-27 15:51:44 +00:00
										 |  |  | /** \PhpOffice\PhpSpreadsheet\IOFactory */ | 
					
						
							| 
									
										
										
										
											2010-10-20 21:55:40 +00:00
										 |  |  | include 'PHPExcel/IOFactory.php'; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-06 11:49:41 +00:00
										 |  |  | $inputFileType = 'Xls'; | 
					
						
							| 
									
										
										
										
											2010-10-20 21:55:40 +00:00
										 |  |  | $inputFileName = './sampleData/example1.xls'; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-27 09:54:51 +00:00
										 |  |  | /*  Create a new Reader of the type defined in $inputFileType  **/ | 
					
						
							| 
									
										
										
										
											2016-12-03 13:32:54 +00:00
										 |  |  | $reader = \PhpOffice\PhpSpreadsheet\IOFactory::createReader($inputFileType); | 
					
						
							| 
									
										
										
										
											2016-11-27 09:54:51 +00:00
										 |  |  | /*  Load $inputFileName to a PHPExcel Object  **/ | 
					
						
							| 
									
										
										
										
											2016-12-03 13:32:54 +00:00
										 |  |  | $spreadsheet = $reader->load($inputFileName); | 
					
						
							| 
									
										
										
										
											2010-10-20 21:55:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | echo '<hr />'; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-27 09:54:51 +00:00
										 |  |  | /*  Read the document's creator property  **/ | 
					
						
							| 
									
										
										
										
											2016-11-27 15:51:44 +00:00
										 |  |  | $creator = $spreadsheet->getProperties()->getCreator(); | 
					
						
							| 
									
										
										
										
											2010-10-20 21:55:40 +00:00
										 |  |  | echo '<b>Document Creator: </b>',$creator,'<br />'; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-27 09:54:51 +00:00
										 |  |  | /*  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(); | 
					
						
							| 
									
										
										
										
											2016-11-27 09:54:51 +00:00
										 |  |  | /*  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); | 
					
						
							| 
									
										
										
										
											2010-10-20 21:55:40 +00:00
										 |  |  | echo '<b>Created On: </b>',$creationDate,' at ',$creationTime,'<br />'; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-27 09:54:51 +00:00
										 |  |  | /*  Read the name of the last person to modify this workbook  **/ | 
					
						
							| 
									
										
										
										
											2016-11-27 15:51:44 +00:00
										 |  |  | $modifiedBy = $spreadsheet->getProperties()->getLastModifiedBy(); | 
					
						
							| 
									
										
										
										
											2010-10-20 21:55:40 +00:00
										 |  |  | echo '<b>Last Modified By: </b>',$modifiedBy,'<br />'; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-27 09:54:51 +00:00
										 |  |  | /*  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(); | 
					
						
							| 
									
										
										
										
											2016-11-27 09:54:51 +00:00
										 |  |  | /*  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); | 
					
						
							| 
									
										
										
										
											2010-10-20 21:55:40 +00:00
										 |  |  | echo '<b>Last Modified On: </b>',$modifiedDate,' at ',$modifiedTime,'<br />'; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-27 09:54:51 +00:00
										 |  |  | /*  Read the workbook title property  **/ | 
					
						
							| 
									
										
										
										
											2016-11-27 15:51:44 +00:00
										 |  |  | $workbookTitle = $spreadsheet->getProperties()->getTitle(); | 
					
						
							| 
									
										
										
										
											2010-10-20 21:55:40 +00:00
										 |  |  | echo '<b>Title: </b>',$workbookTitle,'<br />'; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-27 09:54:51 +00:00
										 |  |  | /*  Read the workbook description property  **/ | 
					
						
							| 
									
										
										
										
											2016-11-27 15:51:44 +00:00
										 |  |  | $description = $spreadsheet->getProperties()->getDescription(); | 
					
						
							| 
									
										
										
										
											2010-10-20 21:55:40 +00:00
										 |  |  | echo '<b>Description: </b>',$description,'<br />'; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-27 09:54:51 +00:00
										 |  |  | /*  Read the workbook subject property  **/ | 
					
						
							| 
									
										
										
										
											2016-11-27 15:51:44 +00:00
										 |  |  | $subject = $spreadsheet->getProperties()->getSubject(); | 
					
						
							| 
									
										
										
										
											2010-10-20 21:55:40 +00:00
										 |  |  | echo '<b>Subject: </b>',$subject,'<br />'; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-27 09:54:51 +00:00
										 |  |  | /*  Read the workbook keywords property  **/ | 
					
						
							| 
									
										
										
										
											2016-11-27 15:51:44 +00:00
										 |  |  | $keywords = $spreadsheet->getProperties()->getKeywords(); | 
					
						
							| 
									
										
										
										
											2010-10-20 21:55:40 +00:00
										 |  |  | echo '<b>Keywords: </b>',$keywords,'<br />'; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-27 09:54:51 +00:00
										 |  |  | /*  Read the workbook category property  **/ | 
					
						
							| 
									
										
										
										
											2016-11-27 15:51:44 +00:00
										 |  |  | $category = $spreadsheet->getProperties()->getCategory(); | 
					
						
							| 
									
										
										
										
											2010-10-20 21:55:40 +00:00
										 |  |  | echo '<b>Category: </b>',$category,'<br />'; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-27 09:54:51 +00:00
										 |  |  | /*  Read the workbook company property  **/ | 
					
						
							| 
									
										
										
										
											2016-11-27 15:51:44 +00:00
										 |  |  | $company = $spreadsheet->getProperties()->getCompany(); | 
					
						
							| 
									
										
										
										
											2010-10-20 21:55:40 +00:00
										 |  |  | echo '<b>Company: </b>',$company,'<br />'; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-27 09:54:51 +00:00
										 |  |  | /*  Read the workbook manager property  **/ | 
					
						
							| 
									
										
										
										
											2016-11-27 15:51:44 +00:00
										 |  |  | $manager = $spreadsheet->getProperties()->getManager(); | 
					
						
							| 
									
										
										
										
											2010-10-20 21:55:40 +00:00
										 |  |  | echo '<b>Manager: </b>',$manager,'<br />'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ?>
 | 
					
						
							|  |  |  | <body> | 
					
						
							|  |  |  | </html> |