News:

Choose a design and let our professionals help you build a successful website   - ITAcumens

Main Menu

Assignment Operators in PHP

Started by sajiv, Aug 14, 2008, 05:25 PM

Previous topic - Next topic

sajiv



Operator     Example     Is The Same As


=                   x=y             x=y
+=                 x+=y           x=x+y
-=                  x-=y            x=x-y
*=                 x*=y           x=x*y
/=                  x/=y            x=x/y
.=                  x.=y            x=x.y
%=                x%=y         x=x%y

:acumen