mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-24 15:38:31 +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 = 'DGET';
|
|
$description = 'Extracts a single value from a column of a list or database that matches criteria that you specify';
|
|
|
|
$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, 15, 10, 75.00],
|
|
['Pear', 9, 8, 8, 76.80],
|
|
['Apple', 8, 9, 6, 45.00],
|
|
];
|
|
$criteria = [['Tree', 'Height', 'Age', 'Yield', 'Profit', 'Height'],
|
|
['="=Apple"', '>10', null, null, null, '<16'],
|
|
['="=Pear"', '>12', null, null, null, null],
|
|
];
|
|
|
|
$worksheet->fromArray($criteria, null, 'A1');
|
|
$worksheet->fromArray($database, null, 'A4');
|
|
|
|
$worksheet->setCellValue('A12', 'The height of the Apple tree between 10\' and 16\' tall');
|
|
$worksheet->setCellValue('B12', '=DGET(A4:E10,"Height",A1:F2)');
|
|
|
|
$worksheet->setCellValue('A13', 'The height of the Apple tree (will return an Excel error, because there is more than one apple tree)');
|
|
$worksheet->setCellValue('B13', '=DGET(A4:E10,"Height",A1:A2)');
|
|
|
|
$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:A2', null, true, true, true);
|
|
$helper->displayGrid($criteriaData);
|
|
|
|
$helper->logCalculationResult($worksheet, $functionName, 'B13', 'A13');
|