PhpSandbox\PHPSandbox::hasBlacklistedGlobals PHP Méthode

hasBlacklistedGlobals() public méthode

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