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

26 lines
303 B
PHP

--TEST--
Testing 'static::' and 'parent::' in calls
--FILE--
<?php
class bar {
public function __call($a, $b) {
print "hello\n";
}
}
class foo extends bar {
public function __construct() {
static::bar();
parent::bar();
}
}
new foo;
?>
--EXPECT--
hello
hello