Changes between Initial Version and Version 1 of Ticket #41944, comment 1
- Timestamp:
- 09/21/2017 01:48:52 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #41944, comment 1
initial v1 1 1 There is no unsigned type in PHP. http://php.net/manual/en/language.types.integer.php 2 2 3 Moreover %u cannot replace %d as negative numbers are a valid placeholder.3 Moreover %u cannot replace %d as negative numbers are valid data. 4 4 5 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.