Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

MySQL Performance Blog:
Integers in PHP, running with scissors, and portability
Mar 29, 2007 @ 14:30:00

According to this new post on the MySQL Performance Blog, PHP has a bit of an issue when it comes to working with integers.

Until recently I thought that currently popular scripting languages, which mostly evolved over last 10 years or something, must allow for easier portability across different platforms compared to ye good olde C/C++.

However, PHP just brought me a new definition of "portable" - and that was when working with... integers.

He points out that PHP isn't able to correctly handle unsigned integers ("and converts values over 2^31 to signed"). He goes on to talk about how this differs between platforms too (32 vs 64 bit) and some of the research he did to find out just what was going on (including some code examples to illustrate the point).

tagged: integer pertability unsigned convert research example integer pertability unsigned convert research example

Link:


Trending Topics: