示例#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();