PHP を使用して Excel ファイルを MySQL データベースにインポートするときに問題に直面しています。すべての日付フィールド値に対して整数値を表示しています。
たとえば、Excel の日付フィールドに 16-06-2012 という日付があるとします。PHPでインポートすると41076と表示されます。
誰でも助けることができますか?
MS Excel のデフォルトは 01-01-1900 ベースの日付を取得します Excel の整数の日付値を php の日付型に簡単に変換できます
$intdatevalue=excel date value in integer
echo date('Y-m-d',strtotime('1899-12-31+'.($intdatevalue-1).' days'));
1899-12-31 は、1900 年がうるう年としてカウントされるためです。
それはあなたのExcelの日付のインポートの問題を解決します
function ExcelToPHP($dateValue = 0, $ExcelBaseDate=0) {
if ($ExcelBaseDate == 0) {
$myExcelBaseDate = 25569;
// Adjust for the spurious 29-Feb-1900 (Day 60)
if ($dateValue < 60) {
--$myExcelBaseDate;
}
} else {
$myExcelBaseDate = 24107;
}
// Perform conversion
if ($dateValue >= 1) {
$utcDays = $dateValue - $myExcelBaseDate;
$returnValue = round($utcDays * 86400);
if (($returnValue <= PHP_INT_MAX) && ($returnValue >= -PHP_INT_MAX)) {
$returnValue = (integer) $returnValue;
}
} else {
$hours = round($dateValue * 24);
$mins = round($dateValue * 1440) - round($hours * 60);
$secs = round($dateValue * 86400) - round($hours * 3600) - round($mins * 60);
$returnValue = (integer) gmmktime($hours, $mins, $secs);
}
// Return
return $returnValue;
}
渡す:
your Excel date (e.g. 41076)
(optionally) a flag 0 or 4 to reflect the Excel base calendar.
This is most likely to be 0
出力は PHP タイムスタンプ値です
$excelDate = 41076;
$timestamp = ExcelToPHP($excelDate);
$mysqlDate = date('Y-m-d', $timestamp);
echo $mysqlDate, PHP_EOL;
$intdatevalue=excel date value in integer
echo date('Y-m-d',strtotime('1899-12-31+'.($intdatevalue-1).' days'));
この答えは最高です。Excel が 01-01-1900 から日付を取得することさえ知りませんでした。だから私はこの男に多くの借りがあります。
私はいつもタイムスタンプの日付が好きです。
Excel の日付は、Unix エポックからの日数を使用して保存されます。
おそらく次のようなことができます。
$excelDate = 41076;
$timestamp = $excelDate * 60 * 60 * 24;
$mysqlDate = date('Y-m-d', $timestamp);