Combined Assignment Operators
<? $x = 4; $x = $x + 4; // $x now equals 8 //can instead be written as $x = 4; $x += 4; // $x now equals 8 ?>