Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

Reference — What does this symbol mean in PHP?



++ increment operator

-- decrement operator

Example    Name              Effect
---------------------------------------------------------------------
++$a       Pre-increment     Increments $a by one, then returns $a.
$a++       Post-increment    Returns $a, then increments $a by one.
--$a       Pre-decrement     Decrements $a by one, then returns $a.
$a--       Post-decrement    Returns $a, then decrements $a by one.
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #Reference #What #symbol
ADD COMMENT
Topic
Name
9+1 =