fork download
  1. <?
  2. global $a;
  3. $a="yes";
  4.  
  5. function test(){
  6. global $b;
  7. $b="ok";
  8. echo $b.$a."\n";
  9. };
  10.  
  11. test();
  12. echo $b.$a."\n";
  13. ?>
Success #stdin #stdout #stderr 0.01s 20520KB
stdin
Standard input is empty
stdout
ok
okyes
stderr
PHP Notice:  Undefined variable: a in /home/KnYuPk/prog.php on line 8