-=[ Mr. Bumblebee ]=-
_Indonesia_
| Path : /usr/src/php/Zend/tests/ |
|
|
| Current File : //usr/src/php/Zend/tests/get_parent_class_001.phpt |
--TEST--
Testing get_parent_class()
--FILE--
<?php
interface ITest {
function foo();
}
abstract class bar implements ITest {
public function foo() {
var_dump(get_parent_class());
}
}
class foo extends bar {
public function __construct() {
var_dump(get_parent_class());
}
}
$a = new foo;
$a->foo();
?>
--EXPECT--
string(3) "bar"
bool(false)
Copyright © 2017 || Recoded By Mr.Bumblebee