Changes

Jump to: navigation, search

PHP Operators

390 bytes added, 19:45, 29 May 2007
Assignment Operators
<tr>
<td>+=<td>Addition-Assignment<td>Adds the value of left hand operand to the value of the right hand operand and assigns result to left hand operand<td>$myVar = 10;<br>$myVar += 5;</td>
<tr>
<td>-=<td>Subtraction-Assignment<td>Subtracts the value of right hand operand from the value of the left hand operand and assigns result to left hand operand<td>$myVar = 10;<br>$myVar -= 5;</td>
<tr>
<td>*=<td>Multiplication-Assignment<td>Muliplies the left hand operand by value of the right hand operand and assigns result to left hand operand<td>$myVar = 10;<br>$myVar *= 5;</td>
 
 
</table>

Navigation menu