X7ROOT File Manager
Current Path:
/home/cbholdings/pasukulu/lib/openspout/src/Writer/XLSX/Helper
home
/
cbholdings
/
pasukulu
/
lib
/
openspout
/
src
/
Writer
/
XLSX
/
Helper
/
📁
..
📄
BorderHelper.php
(1.88 KB)
📄
DateHelper.php
(1.72 KB)
📄
FileSystemHelper.php
(25.59 KB)
Editing: DateHelper.php
<?php declare(strict_types=1); namespace OpenSpout\Writer\XLSX\Helper; use DateTimeInterface; /** * @internal */ final class DateHelper { /** * @see https://github.com/PHPOffice/PhpSpreadsheet/blob/1.22.0/src/PhpSpreadsheet/Shared/Date.php#L296 */ public static function toExcel(DateTimeInterface $dateTime): float { $year = (int) $dateTime->format('Y'); $month = (int) $dateTime->format('m'); $day = (int) $dateTime->format('d'); $hours = (int) $dateTime->format('H'); $minutes = (int) $dateTime->format('i'); $seconds = (int) $dateTime->format('s'); // Fudge factor for the erroneous fact that the year 1900 is treated as a Leap Year in MS Excel // This affects every date following 28th February 1900 $excel1900isLeapYear = 1; if ((1900 === $year) && ($month <= 2)) { $excel1900isLeapYear = 0; } $myexcelBaseDate = 2415020; // Julian base date Adjustment if ($month > 2) { $month -= 3; } else { $month += 9; --$year; } // Calculate the Julian Date, then subtract the Excel base date (JD 2415020 = 31-Dec-1899 Giving Excel Date of 0) $century = (int) substr((string) $year, 0, 2); $decade = (int) substr((string) $year, 2, 2); $excelDate = floor((146097 * $century) / 4) + floor((1461 * $decade) / 4) + floor((153 * $month + 2) / 5) + $day + 1721119 - $myexcelBaseDate + $excel1900isLeapYear ; $excelTime = (($hours * 3600) + ($minutes * 60) + $seconds) / 86400; return $excelDate + $excelTime; } }
Upload File
Create Folder