PhpSandbox\PHPSandbox::hasBlacklistedMagicConsts PHP Méthode

hasBlacklistedMagicConsts() public méthode

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