欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

php封裝的連接Mysql類及用法分析

 更新時間:2015年12月10日 10:20:26   作者:happy664618843  
這篇文章主要介紹了php封裝的連接Mysql類及用法,基于php封裝了簡單的MySQL數(shù)據(jù)庫的連接、查詢、遍歷等技巧,并附帶說明了其具體用法,需要的朋友可以參考下

本文實例講述了php封裝的連接Mysql類及用法。分享給大家供大家參考,具體如下:

class mysql{
private $db_name;
private $db_host;
private $db_user;
private $db_pwd;
private $conn;
private $querysql;
private $result;
private $resultarray=array();
private $row;
//創(chuàng)建構(gòu)造函數(shù) 數(shù)據(jù)庫名 主機名 用戶名 密碼
function __counstruct($dbname,$dbhost,$dbuser,$dbpwd){
$this->db_name=$dbname;
$this->db_host=$dbhost;
$this->db_pwd=$dbpwd;
$this->db_user=$dbuser;
$this->dbconnect();
$this->selectdb();
}
//連接數(shù)據(jù)庫
private function db_connect(){
$this->conn=mysql_connect($this->db_host,$this->db_user,$this->db_pwd) or die("Could not Connect MySql Server");
}
private function selectdb(){
mysql_select_db($this->db_name) or die("unable to select dbname")
}
private function query(){
return $this->result=mysql_query($this->querysql);
}
private function get_result($sql){
$this->querysql=$sql;
$this->query();
if($this->get_num()>0){
//mysql_fetch_assoc()和 mysql_fetch_array(,MYSQL_ASSOC)從結(jié)果集中取得一行作為關(guān)聯(lián)數(shù)組 沒有則返回false
while($this->rows=mysql_fetch_array($this->result)){
//賦值 數(shù)組賦值 resultarray[]= 將影響的行數(shù)賦值給數(shù)組
$this->resultarray[]=$this->rows
}
return $this->resultarray;
}
}
//$result返回值為 bool類型 false為沒有數(shù)據(jù)
private function get_num(){
return $this->num=mysql_num_rows($this->result);
}
}
$m=new mysql("testuser","localhost","root","root");
$arreresult=$m->get_result("select * from userinfo");

希望本文所述對大家php程序設(shè)計有所幫助。

相關(guān)文章

最新評論