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