I have some large HEX values that I want to display as regular numbers, I was using hexdec() to convert to float, and I found a function on PHP.net to convert that to decima
Doesn't intval(var, base) take care of it?
intval(var, base)
From the PHP Manual.