| 
 | 
 
 
 楼主 |
发表于 2011-5-20 14:50:36
|
显示全部楼层
 
 
 
回复 bogy 的帖子 
 
涉及到的那个文件里面函数是: 
function db_connect() 
 
        { 
 
                if ($this->port != '') 
 
                { 
 
                        $this->hostname .= ':'.$this->port; 
 
                } 
 
                if (!emptyempty($this->charset))   //这就是137行 
 
                {   
 
                        @mysql_query("SET NAMES $this->charset");   
 
                } 
 
                return @mysql_connect($this->hostname, $this->username, $this->password, TRUE); 
 
        } |   
 
 
 
 |