PhpSpreadsheet/tests/data/Calculation/TextData/DOLLAR.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
385 B
PHP

<?php
return [
[
'$123.46',
123.456,
2,
],
[
'$123.32',
123.321,
2,
],
[
'$1,235,000',
1234567,
-3,
],
[
'$1,200,000',
1234567,
-5,
],
[
'#NUM!',
'ABC',
2,
],
[
'#NUM!',
123.456,
'ABC',
],
];