fork download
  1. <?php
  2.  
  3. ${M_PI} = 100500;
  4.  
  5. foreach($GLOBALS as $key=>$value) {
  6. if($key > 0) {
  7. echo '${' . $key . '} == ' . ${$key} . PHP_EOL;
  8. }
  9. }
Success #stdin #stdout 0.04s 24324KB
stdin
Standard input is empty
stdout
${3.1415926535898} == 100500