mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-20 03:30:44 +00:00
5266086781
Further reorganization following on PR #3890.
46 lines
1.0 KiB
PHP
46 lines
1.0 KiB
PHP
<?php
|
|
|
|
use PhpOffice\PhpSpreadsheet\Spreadsheet;
|
|
|
|
require __DIR__ . '/../Header.php';
|
|
|
|
$category = 'Engineering';
|
|
$functionName = 'BIN2DEC';
|
|
$description = 'Converts a binary number to decimal';
|
|
|
|
$helper->titles($category, $functionName, $description);
|
|
|
|
// Create new PhpSpreadsheet object
|
|
$spreadsheet = new Spreadsheet();
|
|
$worksheet = $spreadsheet->getActiveSheet();
|
|
|
|
// Add some data
|
|
$testData = [
|
|
[101],
|
|
[110110],
|
|
[1000000],
|
|
[11111111],
|
|
[100010101],
|
|
[110001100],
|
|
[111111111],
|
|
[1111111111],
|
|
[1100110011],
|
|
[1000000000],
|
|
];
|
|
$testDataCount = count($testData);
|
|
|
|
$worksheet->fromArray($testData, null, 'A1', true);
|
|
|
|
for ($row = 1; $row <= $testDataCount; ++$row) {
|
|
$worksheet->setCellValue('B' . $row, '=BIN2DEC(A' . $row . ')');
|
|
}
|
|
|
|
// Test the formulae
|
|
for ($row = 1; $row <= $testDataCount; ++$row) {
|
|
$helper->log(
|
|
"(B$row): "
|
|
. 'Binary ' . $worksheet->getCell("A$row")->getValue()
|
|
. ' is decimal ' . $worksheet->getCell("B$row")->getCalculatedValue()
|
|
);
|
|
}
|