mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-25 00:18:19 +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.
59 lines
1.9 KiB
PHP
59 lines
1.9 KiB
PHP
<?php
|
|
|
|
use PhpOffice\PhpSpreadsheet\Spreadsheet;
|
|
|
|
require __DIR__ . '/../Header.php';
|
|
/** @var PhpOffice\PhpSpreadsheet\Helper\Sample $helper */
|
|
$category = 'Database';
|
|
$functionName = 'DCOUNT';
|
|
$description = 'Counts the cells that contain numbers in a set of database records that match criteria';
|
|
|
|
$helper->titles($category, $functionName, $description);
|
|
|
|
// Create new PhpSpreadsheet object
|
|
$spreadsheet = new Spreadsheet();
|
|
$worksheet = $spreadsheet->getActiveSheet();
|
|
|
|
// Add some data
|
|
$database = [['Tree', 'Height', 'Age', 'Yield', 'Profit'],
|
|
['Apple', 18, 20, 14, 105.00],
|
|
['Pear', 12, 12, 10, 96.00],
|
|
['Cherry', 13, 14, 9, 105.00],
|
|
['Apple', 14, 'N/A', 10, 75.00],
|
|
['Pear', 9, 8, 8, 77.00],
|
|
['Apple', 12, 11, 6, 45.00],
|
|
];
|
|
$criteria = [['Tree', 'Height', 'Age', 'Yield', 'Profit', 'Height'],
|
|
['="=Apple"', '>10', null, null, null, '<16'],
|
|
['="=Pear"', null, null, null, null, null],
|
|
];
|
|
|
|
$worksheet->fromArray($criteria, null, 'A1');
|
|
$worksheet->fromArray($database, null, 'A4');
|
|
|
|
$worksheet->setCellValue('A12', 'The Number of Apple trees between 10\' and 16\' in height whose age is known');
|
|
$worksheet->setCellValue('B12', '=DCOUNT(A4:E10,"Age",A1:F2)');
|
|
|
|
$worksheet->setCellValue('A13', 'The Number of Apple and Pear trees in the orchard with a numeric value in column 3 ("Age")');
|
|
$worksheet->setCellValue('B13', '=DCOUNT(A4:E10,3,A1:A3)');
|
|
|
|
$helper->log('Database');
|
|
|
|
$databaseData = $worksheet->rangeToArray('A4:E10', null, true, true, true);
|
|
$helper->displayGrid($databaseData);
|
|
|
|
// Test the formulae
|
|
$helper->log('Criteria');
|
|
|
|
$criteriaData = $worksheet->rangeToArray('A1:F2', null, true, true, true);
|
|
$helper->displayGrid($criteriaData);
|
|
|
|
$helper->logCalculationResult($worksheet, $functionName, 'B12', 'A12');
|
|
|
|
$helper->log('Criteria');
|
|
|
|
$criteriaData = $worksheet->rangeToArray('A1:A3', null, true, true, true);
|
|
$helper->displayGrid($criteriaData);
|
|
|
|
$helper->logCalculationResult($worksheet, $functionName, 'B13', 'A13');
|