123456789101112131415161718192021222324252627282930 |
- --TEST--
- Dynamic static call of non-static method
- --FILE--
- <?php
- class Foo {
- function test1() {
- $method = ['Foo', 'bar'];
- $method();
- }
- function test2() {
- $method = 'Foo::bar';
- $method();
- }
- function __call($name, $args) {}
- }
- $x = new Foo;
- try {
- $x->test1();
- } catch (Error $e) {
- echo $e->getMessage(), "\n";
- }
- try {
- $x->test2();
- } catch (Error $e) {
- echo $e->getMessage(), "\n";
- }
- ?>
- --EXPECT--
- Non-static method Foo::bar() cannot be called statically
- Non-static method Foo::bar() cannot be called statically
|