php-src/Zend/tests/bug77877.phpt
2020-02-03 22:52:20 +01:00

24 lines
464 B
PHP

--TEST--
Bug #77877 call_user_func() passes $this to static methods
--FILE--
<?php
class Foo {
static public function bar() {
var_dump($this);
}
}
try {
array_map([new Foo, 'bar'],[1]);
} catch (Throwable $e) {
echo $e->getMessage() . "\n";
}
try {
call_user_func([new Foo, 'bar']);
} catch (Throwable $e) {
echo $e->getMessage() . "\n";
}
?>
--EXPECT--
Using $this when not in object context
Using $this when not in object context