You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix a TypeError exception in the pure PHP reader when using large
databases on 32-bit PHP builds with the bcmath extension. Reported
by dodo1708. GitHub #124.
When using the pure PHP reader, unsigned integers up to PHP_MAX_INT
will now be integers in PHP rather than strings. Previously integers
greater than 2^24 on 32-bit platforms and 2^56 on 64-bit platforms
would be strings due to the use of gmp or bcmath to decode them.
Reported by Alejandro Celaya. GitHub #119.