mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-27 10:30:02 +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.
40 lines
1.4 KiB
PHP
40 lines
1.4 KiB
PHP
<?php
|
|
|
|
use PhpOffice\PhpSpreadsheet\Calculation\Financial\Constants as FinancialConstants;
|
|
use PhpOffice\PhpSpreadsheet\Spreadsheet;
|
|
|
|
require __DIR__ . '/../Header.php';
|
|
/** @var PhpOffice\PhpSpreadsheet\Helper\Sample $helper */
|
|
$helper->log('Returns the number of periods required to pay off a loan, for a constant periodic payment');
|
|
$helper->log('and a constant interest rate.');
|
|
|
|
// Create new PhpSpreadsheet object
|
|
$spreadsheet = new Spreadsheet();
|
|
$worksheet = $spreadsheet->getActiveSheet();
|
|
|
|
// Add some data
|
|
$arguments = [
|
|
['Interest Rate', 0.04, 0.06],
|
|
['Payments per Year', 1, 4],
|
|
['Payment Amount', -6000.00, -2000],
|
|
['Present Value', 50000, 60000],
|
|
['Future Value', null, 30000],
|
|
['Payment Type', null, FinancialConstants::PAYMENT_BEGINNING_OF_PERIOD],
|
|
];
|
|
|
|
// Some basic formatting for the data
|
|
$worksheet->fromArray($arguments, null, 'A1');
|
|
$worksheet->getStyle('B1:C1')->getNumberFormat()->setFormatCode('0.00%');
|
|
$worksheet->getStyle('B3:C5')->getNumberFormat()->setFormatCode('$#,##0.00');
|
|
|
|
// Now the formula
|
|
$worksheet->setCellValue('B8', '=NPER(B1/B2, B3, B4)');
|
|
|
|
$helper->log($worksheet->getCell('B8')->getValue());
|
|
$helper->log('NPER() Result is ' . $worksheet->getCell('B8')->getFormattedValue());
|
|
|
|
$worksheet->setCellValue('C8', '=NPER(C1/C2, C3, C4, C5, C6)');
|
|
|
|
$helper->log($worksheet->getCell('C8')->getValue());
|
|
$helper->log('NPER() Result is ' . $worksheet->getCell('C8')->getFormattedValue());
|