PhpSandbox\PHPSandbox::hasBlacklistedGlobals PHP 메소드

hasBlacklistedGlobals() 공개 메소드

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