sagacity/inc/vendor/phpoffice/phpspreadsheet/tests/data/Calculation/TextData/FIXED.php
Ryan Prather d52454d1bb Updates to 3rd party libraries
Add Dockerfile and specific docker-php.ini
2018-08-28 21:27:13 -04: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,
],
];