Files
PhpSpreadsheet/samples/Bitwise/BITLSHIFT.php
T
oleibman b3de003aa5 Reorganize Samples
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.
2024-02-03 07:25:29 -08:00

75 lines
2.3 KiB
PHP

<?php
use PhpOffice\PhpSpreadsheet\Spreadsheet;
require __DIR__ . '/../../Header.php';
$category = 'Engineering';
$functionName = 'BITLSHIFT';
$description = 'Returns a number shifted left by the specified number of bits';
$helper->titles($category, $functionName, $description);
// Create new PhpSpreadsheet object
$spreadsheet = new Spreadsheet();
$worksheet = $spreadsheet->getActiveSheet();
// Add some data
$testData = [
[1],
[3],
[9],
[15],
[26],
];
$testDataCount = count($testData);
$worksheet->fromArray($testData, null, 'A1', true);
for ($row = 1; $row <= $testDataCount; ++$row) {
$worksheet->setCellValue('B' . $row, '=DEC2BIN(A' . $row . ')');
$worksheet->setCellValue('C' . $row, '=BITLSHIFT(A' . $row . ',1)');
$worksheet->setCellValue('D' . $row, '=DEC2BIN(C' . $row . ')');
$worksheet->setCellValue('E' . $row, '=BITLSHIFT(A' . $row . ',2)');
$worksheet->setCellValue('F' . $row, '=DEC2BIN(E' . $row . ')');
$worksheet->setCellValue('G' . $row, '=BITLSHIFT(A' . $row . ',3)');
$worksheet->setCellValue('H' . $row, '=DEC2BIN(G' . $row . ')');
}
// Test the formulae
for ($row = 1; $row <= $testDataCount; ++$row) {
$helper->log(
"(E$row): Bitwise Left Shift of "
. $worksheet->getCell('A' . $row)->getValue()
. ' ('
. $worksheet->getCell('B' . $row)->getCalculatedValue()
. ') by 1 bit is '
. $worksheet->getCell('C' . $row)->getCalculatedValue()
. ' ('
. $worksheet->getCell('D' . $row)->getCalculatedValue()
. ')'
);
$helper->log(
"(E$row): Bitwise Left Shift of "
. $worksheet->getCell('A' . $row)->getValue()
. ' ('
. $worksheet->getCell('B' . $row)->getCalculatedValue()
. ') by 2 bits is '
. $worksheet->getCell('E' . $row)->getCalculatedValue()
. ' ('
. $worksheet->getCell('F' . $row)->getCalculatedValue()
. ')'
);
$helper->log(
"(E$row): Bitwise Left Shift of "
. $worksheet->getCell('A' . $row)->getValue()
. ' ('
. $worksheet->getCell('B' . $row)->getCalculatedValue()
. ') by 3 bits is '
. $worksheet->getCell('G' . $row)->getCalculatedValue()
. ' ('
. $worksheet->getCell('H' . $row)->getCalculatedValue()
. ')'
);
}