vb.org Archive
>
vBulletin 3 Discussion
>
vB3 Programming Discussions
> PHP Code Question
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;
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.