コード例 #1
0
ファイル: 739.php プロジェクト: badlamer/hhvm
<?php

class Example
{
    function whatever()
    {
        if (isset($this)) {
            var_dump('static method call');
        } else {
            var_dump('non-static method call');
        }
    }
}
Example::whatever();
$inst = new Example();
$inst->whatever();