Closed elementaire closed 1 year ago
I understand why it was not done before when i tried to update UnitTest.
PHP does not handle large int, because PHP_INT_MAX
is 7fffffffffffffff
(64 bits) not ffffffffffffffff
.
It will not work in 32 bits system either.
This PR allows to decode
unsigned long long
(8 Bytes) like theICCID1
parameter.I have not any example of
signed long long
yet.