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

43 lines
464 B
PHP

<?php
return [
[
'2EF',
'1357',
],
[
'A6',
'246',
],
[
'14E5',
'12345',
],
[
'0040',
'100',
4,
],
[
'#NUM!',
'123.45',
],
[
'0',
'0',
],
[
'#VALUE!',
true,
],
[
'#NUM!',
'3579',
],
// 2's Complement
[
'FFFFFFFF5B',
'7777777533',
],
];