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