this_as_parameter.phpt 191 B

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