PhpSandbox\PHPSandbox::deblacklistFunc PHP Method

deblacklistFunc() public method

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