PhpSpreadsheet/tests/data/Calculation/TextData/FIXED.php

63 lines
774 B
PHP

<?php
return [
[
'123,456.79',
123456.789,
2,
false,
],
[
'123456.8',
123456.789,
1,
true,
],
[
'123456.79',
123456.789,
2,
true,
],
[
'-123456.79',
-123456.789,
2,
true,
],
[
'123500',
123456.789,
-2,
true,
],
[
'123,500',
123456.789,
-2,
],
[
'-123500',
-123456.789,
-2,
true,
],
[
'-123,500',
-123456.789,
-2,
],
[
'#VALUE!',
'ABC',
2,
null,
],
[
'#VALUE!',
123.456,
'ABC',
null,
],
];