call_user_func_004.phpt 433 B

12345678910111213141516171819202122
  1. --TEST--
  2. Calling non-static method with call_user_func()
  3. --FILE--
  4. <?php
  5. class foo {
  6. public function teste() {
  7. $this->a = 1;
  8. }
  9. }
  10. call_user_func(array('foo', 'teste'));
  11. ?>
  12. --EXPECTF--
  13. Deprecated: %son-static method foo::teste() should not be called statically in %s on line %d
  14. Fatal error: Uncaught Error: Using $this when not in object context in %s:%d
  15. Stack trace:
  16. #0 %s(%d): foo::teste()
  17. #1 {main}
  18. thrown in %s on line %d