PhpSpreadsheet/tests/data/Calculation/MathTrig/INT.php

81 lines
866 B
PHP
Raw Normal View History

<?php
return [
[
null,
0,
],
[
5.4000000000000004,
5,
],
[
-5.4000000000000004,
-6,
],
[
-3.2000000000000002,
-4,
],
[
1.5,
1,
],
[
0.10000000000000001,
0,
],
[
-0.10000000000000001,
-1,
],
[
3,
3,
],
[
2,
2,
],
[
-2.0099999999999998,
-3,
],
[
-2,
-2,
],
[
-1,
-1,
],
[
'ABC',
'#VALUE!',
],
[
true,
1,
],
[
false,
0,
],
[
0,
0,
],
[
'-3.5',
-4,
],
[
8.9000000000000004,
8,
],
[
-8.9000000000000004,
-9,
],
];