PhpSandbox\PHPSandbox::hasBlacklistedMagicConsts PHP 메소드

hasBlacklistedMagicConsts() 공개 메소드

Query whether PHPSandbox instance has blacklisted magic constants.
public hasBlacklistedMagicConsts ( ) : integer
리턴 integer Returns the number of blacklisted magic constants this instance has defined
    public function hasBlacklistedMagicConsts()
    {
        return count($this->blacklist['magic_constants']);
    }
PHPSandbox