in relation to php int64 limits, if the uri has a int64 argument, how do you prevent GET from wrongly converting it into numeric and simply keeping it as a string?
http://some.com?id=1707541557936130
then
echo $_GET['id'] => 1.7075415579361E+15
how to prevent this and have $_GET['id']
be the string 1707541557936130
?
the way $_GET
works now is unusable. need to parse $_SERVER["QUERY_STRING"]
myself. but then never know when php will grab a variable and incorrectly convert again.
NOTE: afaik this will be a problem on 32bit, not 64bit php installs.