PhpSandbox\PHPSandbox::deblacklistConst PHP Méthode

deblacklistConst() public méthode

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