PhpSandbox\PHPSandbox::deblacklistGlobal PHP Method

deblacklistGlobal() public method

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