PDA

View Full Version : PHP Code Question


Parker Clack
05-27-2002, 12:21 PM
Is ++ the same as +1 in a line of code?

Say I have x=x+1 is this the same as saying x=x++?

Thanks,
Parker

Admin
05-27-2002, 12:27 PM
No, but close. :)

$var=$var+1;
$var++;
$var+=1;
All do the same thing.

Same with subtraction:
$var=$var-1;
$var--;
$var-=1;