fork download
  1. <?php
  2. $x = 75;
  3. $y = 25;
  4.  
  5. function addition() {
  6. $GLOBALS['z'] = $GLOBALS['x'] + $GLOBALS['y'];
  7. }
  8.  
  9. addition();
  10. echo $z;
  11. ?>
Success #stdin #stdout 0.01s 82880KB
stdin
Standard input is empty
stdout
100