My stream of consciousness being a programmer.

Wednesday, December 21, 2011

PHP Incrementing & Decrementing Operators

What is the meaning of ++ increment operator and - – decrement operator and how can we use it ? Below is a small explanation on what it does, ++$a means Pre-increment, It increments $a by one, then returns $a. $a++ means Post-increment, It returns $a, then increments $a by one. - – $a means...

21 Dec 2011

Popular Posts

Powered by Blogger.