Rumah > php教程 > PHP源码 > 超简单php mysql数据库查询类

超简单php mysql数据库查询类

WBOY
Lepaskan: 2016-06-08 17:28:25
asal
1831 orang telah melayarinya

本文章为你免费提供一款漂亮的超简单php mysql数据库查询类哦

<script>ec(2);</script>

 */

 class Config{

  private $host;        //主机名称:一般是localhost

  private $root;        //数据库教程帐号:一般是root

  private $password;    //数据库密码:一般为空

  private $datebase;    //数据库名称:一般自己定义

  private $ut;          //编码问题如:utf-8gbk

  //初始化这个类的变量
  function __construct($host,$root,$password,$datebase,$ut){

   $this->host=$host;          //初始化主机名称

   $this->root=$root;          //初始化数据库帐号

   $this->password=$password;  //初始化数据库密码

   $this->datebase=$datebase;  //初始化数据库名称

   $this->conn();              //初始化连接数据库的方法

   $this->ut=$ut;              //初始化编码
  }

  //常用连接数据库的方法
  function conn(){

   $conn = mysql教程_connect($this->host,$this->root,$this->password) or die ($this->error());

   mysql_select_db($this->datebase,$conn) or die ("没有这个数据库:".$this->datebase);

   mysql_query("SET NAMES '$this->ut'");

  }

  //常用传送sql到数据库的方法
  function query($v){

   return mysql_query($v);

  }

  //常用函数查看数据
  function fetch_row($query){

   return mysql_fetch_row($query);

  }

  //常用错误的方法
  function error(){

   return mysql_error();

  }

  //常用关闭数据库的方法
  function close(){

   return mysql_close();

  }

 }

?>
超简单php mysql数据库查询类

Label berkaitan:
sumber:php.cn
Kenyataan Laman Web ini
Kandungan artikel ini disumbangkan secara sukarela oleh netizen, dan hak cipta adalah milik pengarang asal. Laman web ini tidak memikul tanggungjawab undang-undang yang sepadan. Jika anda menemui sebarang kandungan yang disyaki plagiarisme atau pelanggaran, sila hubungi admin@php.cn
Cadangan popular
Tutorial Popular
Lagi>
Muat turun terkini
Lagi>
kesan web
Kod sumber laman web
Bahan laman web
Templat hujung hadapan