indirect_call_string_003.phpt 593 B

12345678910111213141516171819202122232425262728
  1. --TEST--
  2. Dynamic static call to instance method should throw.
  3. --CREDITS--
  4. Aaron Piotrowski <aaron@icicle.io>
  5. --FILE--
  6. <?php
  7. class TestClass
  8. {
  9. private $test;
  10. public function method()
  11. {
  12. $this->test = 'test';
  13. return "Hello, world!\n";
  14. }
  15. }
  16. $callback = 'TestClass::method';
  17. echo $callback();
  18. ?>
  19. --EXPECTF--
  20. Deprecated: Non-static method TestClass::method() should not be called statically in %s on line %d
  21. Fatal error: Uncaught Error: Using $this when not in object context in %s:%d
  22. Stack trace:
  23. #0 %s(%d): TestClass::method()
  24. #1 {main}
  25. thrown in %s on line %d