View Single Post
  #20  
Old 03-05-2007, 07:17 PM
Skyld Skyld is offline
Script-fu
Skyld's Avatar
Join Date: Jan 2002
Location: United Kingdom
Posts: 3,914
Skyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud of
Send a message via AIM to Skyld
Quote:
Originally Posted by godofwarares View Post
Adds if the integer is positive, subtracts if negative . . . Some stupid unneeded operator ._.
It's not an operator; it's doing what it says:
PHP Code:
temp.foo += -temp.bar
i.e.
PHP Code:
temp.foo 0;
temp.foo +=- 3
... equals -3.
PHP Code:
temp.foo 0;
temp.foo +=- -3
... equals 3.
PHP Code:
temp.foo 0;
temp.foo -=+ 3
... equals -3.
PHP Code:
temp.foo 0;
temp.foo -=+ -3
... equals 3.
__________________
Skyld
Reply With Quote