PhpSpreadsheet/tests/data/Calculation/Engineering/OCT2HEX.php

43 lines
464 B
PHP
Raw Normal View History

<?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',
],
];