mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-19 02:30:35 +00:00
b3de003aa5
The samples have become unwieldy when running them from a browser. In particular, the drop-down lists are fixed size with no scrolling, and many of them are now just too large. I have moved all the Calculation samples up a level, and broken several categories (Basic, Chart, DateTime, Engineering, Financial, and Reader) into several pieces. Convert-Online (now found in the Engineering category) had a number of different problems which are now resolved. It is the only member with any significant code change.
54 lines
1.5 KiB
PHP
54 lines
1.5 KiB
PHP
<?php
|
|
|
|
use PhpOffice\PhpSpreadsheet\Spreadsheet;
|
|
|
|
require __DIR__ . '/../../Header.php';
|
|
|
|
$category = 'Date/Time';
|
|
$functionName = 'DAYS';
|
|
$description = 'Returns the number of days between two dates';
|
|
|
|
$helper->titles($category, $functionName, $description);
|
|
|
|
// Create new PhpSpreadsheet object
|
|
$spreadsheet = new Spreadsheet();
|
|
$worksheet = $spreadsheet->getActiveSheet();
|
|
|
|
// Add some data
|
|
$testDates = [
|
|
[1900, 1, 1],
|
|
[1904, 1, 1],
|
|
[1936, 3, 17],
|
|
[1960, 12, 19],
|
|
[1999, 12, 31],
|
|
[2000, 1, 1],
|
|
[2019, 2, 14],
|
|
[2020, 7, 4],
|
|
[2020, 2, 29],
|
|
[2029, 12, 31],
|
|
[2525, 1, 1],
|
|
];
|
|
$testDateCount = count($testDates);
|
|
|
|
$worksheet->fromArray($testDates, null, 'A1', true);
|
|
|
|
for ($row = 1; $row <= $testDateCount; ++$row) {
|
|
$worksheet->setCellValue('D' . $row, '=DATE(A' . $row . ',B' . $row . ',C' . $row . ')');
|
|
$worksheet->setCellValue('E' . $row, '=D' . $row);
|
|
$worksheet->setCellValue('F' . $row, '=TODAY()');
|
|
$worksheet->setCellValue('G' . $row, '=DAYS(D' . $row . ', F' . $row . ')');
|
|
}
|
|
$worksheet->getStyle('E1:F' . $testDateCount)
|
|
->getNumberFormat()
|
|
->setFormatCode('yyyy-mm-dd');
|
|
|
|
// Test the formulae
|
|
for ($row = 1; $row <= $testDateCount; ++$row) {
|
|
$helper->log(sprintf(
|
|
'Between: %s and %s',
|
|
$worksheet->getCell('E' . $row)->getFormattedValue(),
|
|
$worksheet->getCell('F' . $row)->getFormattedValue()
|
|
));
|
|
$helper->log('Days: ' . $worksheet->getCell('G' . $row)->getCalculatedValue());
|
|
}
|