mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-17 11:10:21 +00:00
ecbd702628
Phpstan hasn't identified any errors in Samples in a long time. But, as it turns out, one particular error is suppressed: ``` Variable $helper might not be defined. ``` This error would be generated by almost all samples, and the errors that it suppresses will become problematic if we move to Level 10. We are not yet committed to doing that, but it is pretty easy to write a script to change the samples so that error no longer happens, and there isn't really any reason to delay doing so. The results of that script constitute this PR.
37 lines
1.2 KiB
PHP
37 lines
1.2 KiB
PHP
<?php
|
|
|
|
use PhpOffice\PhpSpreadsheet\Spreadsheet;
|
|
|
|
require __DIR__ . '/../Header.php';
|
|
/** @var PhpOffice\PhpSpreadsheet\Helper\Sample $helper */
|
|
$helper->log('Returns the depreciation of an asset, using the Double Declining Balance Method,');
|
|
$helper->log('for each period of the asset\'s lifetime.');
|
|
|
|
// Create new PhpSpreadsheet object
|
|
$spreadsheet = new Spreadsheet();
|
|
$worksheet = $spreadsheet->getActiveSheet();
|
|
|
|
// Add some data
|
|
$arguments = [
|
|
['Cost Value', 10000],
|
|
['Salvage', 1000],
|
|
['Life', 5, 'Years'],
|
|
];
|
|
|
|
// Some basic formatting for the data
|
|
$worksheet->fromArray($arguments, null, 'A1');
|
|
$worksheet->getStyle('B1:B2')->getNumberFormat()->setFormatCode('$#,##0.00');
|
|
|
|
// Now the formula
|
|
$baseRow = 5;
|
|
for ($year = 1; $year <= 5; ++$year) {
|
|
$row = (string) ($baseRow + $year);
|
|
|
|
$worksheet->setCellValue("A{$row}", "Depreciation after Yr {$year}");
|
|
$worksheet->setCellValue("B{$row}", "=DDB(\$B\$1, \$B\$2, \$B\$3, {$year})");
|
|
$worksheet->getStyle("B{$row}")->getNumberFormat()->setFormatCode('$#,##0.00;-$#,##0.00');
|
|
|
|
$helper->log($worksheet->getCell("B{$row}")->getValue());
|
|
$helper->log("DDB() Year {$year} Result is " . $worksheet->getCell("B{$row}")->getFormattedValue());
|
|
}
|