fork download
  1. <?php
  2.  
  3. // your code goes here
  4. $a=1;
  5. $b=2;
  6. [$a,$b]=[$b,$a];
  7. echo $a;
  8. echo $b;
Success #stdin #stdout 0.02s 26380KB
stdin
Standard input is empty
stdout
21