Changes between Version 1 and Version 2 of Ticket #41944, comment 1
- Timestamp:
- 09/21/2017 01:53:23 PM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #41944, comment 1
v1 v2 3 3 Moreover %u cannot replace %d as negative numbers are valid data. 4 4 5 PHP_MAX_INT on 64-bit systems is 9223372036854775807. In order to pass larger number there are special libraries or the bcmath extension. These could be passed in as strings to MySQL for the unsigned column types.5 PHP_MAX_INT on 64-bit systems is 9223372036854775807. In order to pass larger number there are special libraries or the bcmath, GMP extensions. These could be passed in as strings to MySQL for the unsigned column types. 6 6 7 7 So %u wouldn't really help.