db_mysqli::close PHP Method

close() public method

关闭数据库
public close ( ) : volid
return volid
    public function close()
    {
        if ($this->_linkID) {
            $this->_linkID->close();
        }
        $this->_linkID = null;
    }