You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.3 KiB
48 lines
1.3 KiB
<?php
|
|
|
|
use PhpOffice\PhpSpreadsheet\Spreadsheet;
|
|
|
|
require __DIR__ . '/../../Header.php';
|
|
|
|
$category = 'Date/Time';
|
|
$functionName = 'MINUTE';
|
|
$description = 'Returns the minute of a time value. The minute is given as an integer, ranging from 0 to 59';
|
|
|
|
$helper->titles($category, $functionName, $description);
|
|
|
|
// Create new PhpSpreadsheet object
|
|
$spreadsheet = new Spreadsheet();
|
|
$worksheet = $spreadsheet->getActiveSheet();
|
|
|
|
// Add some data
|
|
$testTimes = [
|
|
[0, 6, 0],
|
|
[1, 12, 15],
|
|
[3, 30, 12],
|
|
[5, 17, 31],
|
|
[8, 15, 45],
|
|
[12, 45, 11],
|
|
[14, 0, 30],
|
|
[17, 55, 50],
|
|
[19, 21, 8],
|
|
[21, 10, 10],
|
|
[23, 59, 59],
|
|
];
|
|
$testTimeCount = count($testTimes);
|
|
|
|
$worksheet->fromArray($testTimes, null, 'A1', true);
|
|
|
|
for ($row = 1; $row <= $testTimeCount; ++$row) {
|
|
$worksheet->setCellValue('D' . $row, '=TIME(A' . $row . ',B' . $row . ',C' . $row . ')');
|
|
$worksheet->setCellValue('E' . $row, '=D' . $row);
|
|
$worksheet->setCellValue('F' . $row, '=MINUTE(D' . $row . ')');
|
|
}
|
|
$worksheet->getStyle('E1:E' . $testTimeCount)
|
|
->getNumberFormat()
|
|
->setFormatCode('hh:mm:ss');
|
|
|
|
// Test the formulae
|
|
for ($row = 1; $row <= $testTimeCount; ++$row) {
|
|
$helper->log(sprintf('(E%d): %s', $row, $worksheet->getCell('E' . $row)->getFormattedValue()));
|
|
$helper->log('Minute is: ' . $worksheet->getCell('F' . $row)->getCalculatedValue());
|
|
}
|
|
|