fork(1) download
  1. <?php
  2. define("Value", 100);
  3.  
  4. function myGlobal() {
  5. echo Value;
  6. }
  7.  
  8. myGlobal();
  9. ?>
Success #stdin #stdout 0.02s 52472KB
stdin
Standard input is empty
stdout
100