PhpSpreadsheet/tests/data/Calculation/TextData/FIXED.php
Adrien Crivelli 8dddf56c2e
Use proper syntax for variadic functions
This simplify code, increase readability and improve the function
signature for API users.
2017-01-23 15:01:20 +09:00

35 lines
403 B
PHP

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