fork download
  1. <?php
  2.  
  3. function p(&$b){
  4. $b = $b+1;
  5. }
  6.  
  7. $a = 10;
  8. p($a);
  9. printf("%d", $a);
  10.  
  11. ?>
Success #stdin #stdout 0.02s 13112KB
stdin
Standard input is empty
stdout
11