0

I am using a LAMP server. No matter what token the service call has, it's always showing me the same number. Right now it's 2147483647.I guess it changes if I reboot server.

I have other values in the service call. All other are correct except the token.

Thanks in advance.

Lucas Kauffman
  • 16,880
  • 9
  • 58
  • 93
theLeo
  • 3
  • 2
  • 1
    All I know is that is the maximum value for a 32-bit signed integer. It probably won't change when you reboot. Can you please go into more detail as to what you're trying to do? – d34dh0r53 Jan 14 '12 at 06:32

1 Answers1

0

It is solved, it was int overflow issue. http://php.net/manual/en/language.types.integer.php

theLeo
  • 3
  • 2