Source Code : Assignment Operators demo

PHP Is Open Source Programming Language You Can Download and use It, You required xampp server and wamp server . You download From xampp server from https://www.apachefriends.org/download.html. Click Here to download
We provide this code related to title for you to solve your developing problem easily. Libraries which is import in this program you can download from http://php.net/. Click Here or search from google with Libraries Name you get jar file related it and also http://php.net/ is a official site

Assignment Operators demo

 
Example           Operation              Result 
$a += $b          Addition               $a = $a + $b 
$a -= $b          Subtraction            $a = $a - $b 
$a *= $b          Multiplication         $a = $a * $b 
$a /= $b          Division               $a = $a / $b 
$a %= $b          Modulus                $a = $a % $b 
$a &= $b          Bitwise                and $a = $a & $b 
$a |= $b          Bitwise                or $a = $a | $b 
$a ^= $b          Bitwise                xor $a = $a ^ $b 
$a <<= $b         Left shift             $a = $a << $b 
$a >>= $b         Right shift            $a = $a >> $b 

    


<?php 
  
  $a = "PHP "; $aa = "Script"; 
  $a .= $aa; 

  $b = 8; $bb = 4; 
  $b += $bb; 

  $c = 7.5; $cc = 2.25; 
  $c -= $cc; 

  $d = 8; $dd = 4; 
  $d *= $dd; 

  $e = 8; $ee = 4; 
  $e /= $ee; 

  $f = 8; $ff = 4; 
  $f %= $ff; 

  $result =  "$a ADD AND ASSIGN STRING: $a<br>";
  $result .= "$b ADD AND ASSIGN INTEGER: $b<br>";
  $result .= "$c SUBTRACT AND ASSIGN FLOAT: $c<br>";
  $result .= "$d MULTIPLY AND ASSIGN: $d<br>";
  $result .= "$e DIVIDE AND ASSIGN: $e<br>";  
  $result .= "$f MODULO AND ASSIGN: $f";

?>

<html>
 <head>
  <title>Assignment Operators</title>
 </head>
 <body>

  <?php echo( $result ); ?>

 </body>
</html>
  
  

Thank with us