fork(2) download
  1. <?php
  2.  
  3. // your code goes here
  4.  
  5.  
  6. $a = ' 100 ';
  7. $b = ' 100001 ';
  8.  
  9. echo $a . $b;
  10.  
  11. $a ^= $b ^= $a ^= $b;
  12. echo '<br>';
  13. echo $a . $b;
Success #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
 100  100001 <br> 1000 100