fork download
  1. <?php
  2. $ff = 'ground zero';
  3. function method1($a)
  4. {
  5. echo($a);
  6. }
  7. function method2 ()
  8. {
  9. global $ff;
  10. method1($ff);
  11. }
  12. method2();
  13.  
Success #stdin #stdout 0.01s 23864KB
stdin
Standard input is empty
stdout
ground zero