--$a Decrement and return Decrement $a by one, then return it. Tags --$a decrement Related $a-- ++$a $a = 1; $b = --$a; // $a = 0, $b = 0 1.0+