Switch to full style
:read: Start PHP with us. Includes topics to help you in php
Post a reply

Shorthand Operators table

Mon Oct 27, 2008 5:51 pm

Code:

Operation       Operator        Example        Expansion

Assignment      =               $a = 5         $a = 5

Addition        +=              $a += 5        $a = $a + 5

Subtraction     -=              $a -= 5        $a = $a - 5

Multiplication  *=              $a *= 5        $a = $a * 5

Division        /=              $a /= 5        $a = $a / 5

Concatenation   .=              $a .= "Add"    $a = $a . "Add"

Modulus         %=              $a %= 5        $a = $a % 5

Bitwise AND     &=              $a &= 5        $a = $a & 5

Bitwise         |=              $a |= 5        $a = $a | 5
inclusive OR

Bitwise         ^=              $a ^= 5        $a = $a ^ 5
exclusive OR (XOR)

Bitwise NOT     ~=              $a ~= 5        $a = $a ~ 5

Bitwise         <<=             $a <<= 5       $a = $a << 5
left-shift

Bitwise         >>=             $a >>= 5       $a = $a >> 5
right-shift




Post a reply
  Related Posts  to : Shorthand Operators table
 Relational Operators table     -  
 Postfix and Prefix Operators table     -  
 PHP operators     -  
 shortcut operators     -  
 Using Assignment Operators     -  
 C++ Increment Operators     -  
 Bitwise operators     -  
 Equality Operators     -  
 using bit-wise operators in c++     -  
 difference between the >> and >>> operators     -  

Topic Tags

PHP Variables