コード例 #1
0
ファイル: Foo.php プロジェクト: ryo-utsunomiya/php
<?php

class Foo
{
    public function helloGateway()
    {
        static::hello();
    }
    public static function hello()
    {
        echo __CLASS__, ' hello!', PHP_EOL;
    }
}
class Bar extends Foo
{
    public static function hello()
    {
        echo __CLASS__, ' hello!', PHP_EOL;
    }
}
$bar = new Bar();
$bar->helloGateway();