Help for this page

Select Code to Download


  1. or download this
    $temp = $a;
    $a = $b;
    $b = $a;
    
  2. or download this
    $a ^= $b;
    $b ^= $a;
    $a ^= $b;
    
  3. or download this
    $a .= $b;
    $b = substr($a,0,length($a)-length($b));
    substr($a,0,length($b)) = '';
    
  4. or download this
    $a += $b;
    $b = $a - $b;
    $a -= $b;
    
  5. or download this
    $a ^= $b;
    $b ^= $a;
    $a ^= $b;