PHP如何检测是否从公共或私有范围调用方法?

时间:2014-03-28 12:02:02

标签: php oop

如何检测是否在公共,私有或受保护范围内调用方法?

例如......

class Foo {

    public function getPassword(){
        $scope = [??????];
        switch($scope){
            case 'public':
                return "*****";
                break;
            case 'protected': case 'private':
                return "IamPassword";
                break;
        }
    }
}

在类中,我可能需要一个可能对模板引擎不可见但可由类访问的属性。

1 个答案:

答案 0 :(得分:1)

首先,我强烈建议您尽快重新设计代码。但是你的问题对我来说似乎很有趣,这就是为什么你可以试试这个:

    $scopeIsInner = false;
    $exception = new Exception();
    $trace = $exception->getTrace();
    $class = $trace[1]['class'];
    if ($class == __CLASS__) {
        $method = $trace[1]['function'];
        $reflect = new ReflectionObject($this);
        $methodList = $reflect->getMethods(ReflectionMethod::IS_PROTECTED | ReflectionMethod::IS_PRIVATE);
        foreach ($methodList as $reflectionMethod) {
            if ($method == $reflectionMethod->name) {
                $scopeIsInner = true;
                break;
            }
        }
    }
    var_dump($scopeIsInner);

P.S。我永远不会在我自己的应用程序中使用此代码