首页  >  文章  >  后端开发  >  一个MYSQL操作类_PHP教程

一个MYSQL操作类_PHP教程

WBOY
WBOY原创
2016-07-21 16:01:19971浏览

复制代码 代码如下:

class DB{    
var $host_addr = "localhost";
var $host_user = "root";
var $host_psw  = "123";
var $db_name   = "test";

var $link_id;
var $query_id;
var $numRow;

function DB(){
     $this->link_id = @mysql_connect($this->host_addr,$this->host_user,$this->host_psw);
  if($this->link_id){
      @mysql_select_db($this->db_name,$this->link_id) or $this->halt("数据库连接失败!");
  }else{
      $this->halt("连接服务器失败!");
   return false;
  }
  return $this->link_id;
}
function query($sql){
     $this->query_id = @mysql_query($sql,$this->link_id);
  if($this->query_id){
      return $this->query_id;
  }else{
      $this->halt("SQL Error::");
   return false;
  }
}
function numRow(){
     return $this->numRow = @mysql_num_rows($this->query_id);
}
function close(){
     return @mysql_close($this->link_id);
}
function halt($msg){
     echo "".$msg."";
}

}
?>

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/316920.htmlTechArticle复制代码 代码如下: ?php classDB{ var$host_addr="localhost"; var$host_user="root"; var$host_psw="123"; var$db_name="test"; var$link_id; var$query_id; var$numRow; functionDB(...
声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn