this_as_global.phpt 212 B

123456789101112
  1. --TEST--
  2. $this as global variable
  3. --FILE--
  4. <?php
  5. function foo() {
  6. global $this;
  7. var_dump($this);
  8. }
  9. foo();
  10. ?>
  11. --EXPECTF--
  12. Fatal error: Cannot use $this as global variable in %sthis_as_global.php on line 3