I'm using PHP to access an external API.
When a call a particular API method, it returns a number one higher than I want to display.
However, the API is returning the integer as a string and not an integer.
Question: How can I decrement the returned string by 1 since it's not an integer
Essentially, I want to do the follow pseudo-code (that doesn't work):
echo external_api() -1; // problem is, this returns "X -1" where "X" is an integer but returned as a strong
external_api() - 1without any casts?? it is php, that is how it works. – zerkms Oct 12 '10 at 4:53function three() { return "3"; } echo three() - 1;This outputs2. Your problem is somewhere else. Post your real code and/or more of it. – deceze Oct 12 '10 at 5:06