PhpSandbox\PHPSandbox::hasDefinedMagicConsts PHP Méthode

hasDefinedMagicConsts() public méthode

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