Files
PhpSpreadsheet/tests/data/Calculation/MathTrig/ROUNDDOWN.php
T
2024-11-10 01:35:47 -08:00

40 lines
932 B
PHP

<?php
declare(strict_types=1);
return [
[0, '0,2'],
[662, '662.79,0'],
[662.7, '662.79, 1'],
[50, '54.1, -1'],
[50, '55.1, -1'],
[-23.6, '-23.67, 1'],
[3, '3.2, 0'],
[3, '3.2, 0.01'],
[76, '76.9, 0'],
[3.141, '3.14159, 3'],
[-3.1, '-3.14159,1'],
[31400, '31415.92654,"-2"'],
[31410, '31415.92654,-1'],
[4.44, '4.4400,2'],
[5.20, '2.26 + 2.94, 2'],
[-4.44, '-4.4400,2'],
[-5.20, '-2.26 - 2.94, 2'],
['#VALUE!', '"ABC",1'],
['#VALUE!', '1.234,"ABC"'],
[0, ', 0'],
[0, 'false, 0'],
[1, 'true, 0'],
['#VALUE!', '"", 0'],
[1, 'A2, 0'],
[2, 'A3, 0'],
[-3, 'A4, 0'],
[-5, 'A5, 0'],
[0, 'B1, 0'],
['exception', ''],
['exception', '35.51'],
'negative number and precision ROUNDDOWN' => [-31400, '-31415.92654, -2'],
'issue 4213 #1' => [249.0, '249.9975, 0'],
'issue 4213 #2' => [-249.0, '-249.9975, 0'],
];