I am trying to import a excel file using PhpExcel lib
for all other fields the getValue()
function works but when it encounters a field with format date as set in ms-excel2013
the date field in exel file is in format d-m-Y like 16-11-2014
but when I try to import it's value the getValue()
returns 11-16-14
which when passed to strtotime
further returns false
in turn causing the date('Y-m-d',strtotime($date))
to return 1970-01-01
.
I searched whole of web and stackoverflow but none solution fixed my problem.
In excel file i see the date as 16-11-2014
and want it to be imported as is.
Here's the code
protected function importExcel($filePath) {
$excelData = array();
if ($filePath) {
$objPHPExcel = PHPExcel_IOFactory::load($filePath);
$objPHPExcel->setReadDataOnly(true);
foreach ($objPHPExcel->getWorksheetIterator() as $worksheet) {
$worksheetTitle = $worksheet->getTitle();
$highestRow = $worksheet->getHighestRow(); // e.g. 10
$highestColumn = $worksheet->getHighestColumn(); // e.g 'F'
$highestColumnIndex = PHPExcel_Cell::columnIndexFromString($highestColumn);
$nrColumns = ord($highestColumn) - 64;
$data = array();
for ($row = 1; $row <= $highestRow; ++$row) {
$values = array();
for ($col = 0; $col < $highestColumnIndex; ++$col) {
$cell = $worksheet->getCellByColumnAndRow($col, $row);
if (PHPExcel_Shared_Date::isDateTime($cell))
throw new Exception("is date time"); // just a check
$val = $cell->getValue();
if (isset($val) && $val)
$data[$row][$col] = $val;
}
}
$excelData[$worksheetTitle] = $data;
}
return $excelData;
}
return FALSE;
}
A
getValue()
call on a field containing a date should return a value like41959.00
if that field really does contain an MS Excel date value.... that is, an MS Excel serialized datetime stamp based on the number of days since 1st January 1900 (or 1st January 1904 if the file was created using the Mac version of MS Excel)To get a formatted date string, you need to call
getFormattedValue()
instead; and PHPExcel then uses the number format mask for that cell to format the date according to that mask.To identify if a cell contains an MS serialized datetime stamp, you can use a call to
PHPExcel_Shared_Date::isDateTime()
first.Rather than returning a formatted data value, you can also ask PHPExcel to return the date as a Unix timestamp, or as a PHP DateTime object instead; and then you'll be able to format it however you want using PHP's built-in date functions or DateTime methods.
or
I've checked the file that you provided, looking at your date issue.
The format that you're using for those dates in your spreadsheet is a locale-aware date format, flagged by MS Excel with an asterisk (*) if you look at the cell format
This means (quoting from Excel's notes on the format mask display):
Because PHPExcel is not locale-aware, but does recognise the format mask as a date value, it uses a generic formatting.
Running the following code
gives
So (as long as you've removed that
setReadDataOnly(true)
call from the Reader, call from the Reader, you can still identify date cells as dates, and format them manually, overriding the default locale-formattingI have found out the solution:
Method _formatAsDate in the file PHPExcel/Style/NumberFormat.php
if the date is like
16/11/2014
, when passed tostrtotime
will result infalse
as the date is supposed to be in formatm/d/Y
bystrtotime
. So if you change the format tom/d/Y
if it'sd/m/Y
then the solution will always be correct.Earlier:
Now:
Code is still the same and simple to import the file: