A::g PHP Method

g() public method

public g ( )
    function g()
    {
        foreach ($this->f() as $c) {
            $c->g();
        }
    }

Same methods

A::g ( ) : integer

Usage Example

コード例 #1
0
ファイル: jithip.php プロジェクト: jemmy655/hippyvm
function f()
{
    $a = new A();
    for ($i = 0; $i < 1000000; $i++) {
        $a->g();
    }
}
All Usage Examples Of A::g