does someone know how to have 64 bit integer on PHP? it seems like it is not by config file but rather it might be a compile time option and it depends on the platform?
feedback
|
|
Native 64-bit integers require 64-bit hardware AND the 64-bit version of PHP. On 32-bit hardware:
On 64-bit hardware:
| |||||||||||
feedback
|
|
PHP int size is platform-dependent. There is a function called unpack() which essentially allows to convert different types of data from binary strings to PHP variables. It seems to be the only way to store as 64 bit is to store it as a string. I found the following code at: http://www.mysqlperformanceblog.com/2007/03/27/integers-in-php-running-with-scissors-and-portability/
| |||
|
feedback
|
|
Note that PHP on Windows does not support 64-bit integers at all, even if both the hardware and PHP are 64-bit. See this link for details:
| ||||
|
feedback
|
This is absurdly wrong, Windows supports 64Bit-int since a few years now - if the developers of PHP are unable to use the new types UINT64 and the likes ... well, its the fault of PHP, not windows. Native (!) C-Types for int64 would be uint64_t and int64_t, so even the implicit statement about C being the cause is also horribly wrong - the REAL cause is as simple as that : the devs of PHP are not that competent ... they may sound harsh but it appears to be true. | |||||
feedback
|