PhpSandbox\PHPSandbox::deblacklistVar PHP Méthode

deblacklistVar() public méthode

You can pass a string of variable name, or pass an array of the variable names to remove from blacklist
public deblacklistVar ( string | array $name )
$name string | array String of variable name or array of variable names to remove from blacklist
    public function deblacklistVar($name)
    {
        if (func_num_args() > 1) {
            return $this->deblacklistVar(func_get_args());
        }
        return $this->deblacklist('variables', $name);
    }
PHPSandbox