Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #41944, comment 1


Ignore:
Timestamp:
09/21/2017 01:48:52 PM (8 years ago)
Author:
soulseekah
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #41944, comment 1

    initial v1  
    11There is no unsigned type in PHP. http://php.net/manual/en/language.types.integer.php
    22
    3 Moreover %u cannot replace %d as negative numbers are a valid placeholder.
     3Moreover %u cannot replace %d as negative numbers are valid data.
    44
    55PHP_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.