Ejemplo n.º 1
0
 public static function test()
 {
     echo get_class(new static()) . "\n";
     TestB::test();
     echo get_class(new static()) . "\n";
     TestC::test();
     echo get_class(new static()) . "\n";
     TestBB::test();
     echo get_class(new static()) . "\n";
 }
Ejemplo n.º 2
0
        $i++;
        if ($i >= 5) {
            return 5;
        }
        return call_user_func_array(array($this, "parent::doSomethingParentThis"), array($i));
    }
    public static function doSomethingStatic($i)
    {
        echo __METHOD__ . "({$i})\n";
        $i++;
        if ($i >= 5) {
            return 5;
        }
        return call_user_func_array(array("TestA", "doSomethingStatic"), array($i));
    }
}
$x = new TestB();
echo "===A===\n";
var_dump($x->doSomething(1));
echo "\n===B===\n";
var_dump($x->doSomethingThis(1));
echo "\n===C===\n";
var_dump($x->doSomethingParent(1));
echo "\n===D===\n";
var_dump($x->doSomethingParentThis(1));
echo "\n===E===\n";
var_dump($x->doSomethingStatic(1));
?>
===DONE===
<?php 
exit(0);