fork download
  1. <?php
  2.  
  3. $a = 1;
  4. $b = 2;
  5.  
  6. function bagor()
  7. {
  8. global $b;
  9. echo $b;
  10. }
  11. bagor();
Success #stdin #stdout 0.02s 26084KB
stdin
Standard input is empty
stdout
2