ZBlogPHP::DelConfig PHP Method

DelConfig() public method

删除Configs表
public DelConfig ( string $name ) : boolean
$name string Configs表名
return boolean
    public function DelConfig($name)
    {
        if (!isset($this->configs[$name])) {
            return false;
        }
        $this->configs[$name]->Delete();
        return true;
    }
ZBlogPHP