PhpSpreadsheet/tests/data/Calculation/Engineering/OCT2DEC.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

42 lines
445 B
PHP

<?php
return [
[
'751',
'1357',
],
[
'166',
'246',
],
[
'5349',
'12345',
],
[
'#NUM!',
'123.45',
],
[
'0',
'0',
],
[
'#VALUE!',
true,
],
[
'#NUM!',
'3579',
],
[
'44',
'54',
],
// 2's Complement
[
'-165',
'7777777533',
],
];