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

29 lines
365 B
PHP

--TEST--
Testing 'new static;' calling parent method
--FILE--
<?php
class bar {
public function show() {
var_dump(new static);
}
}
class foo extends bar {
public function test() {
parent::show();
}
}
$foo = new foo;
$foo->test();
call_user_func(array($foo, 'test'));
?>
--EXPECTF--
object(foo)#%d (0) {
}
object(foo)#%d (0) {
}