高清国产av一区二区三区_亚洲欧美日韩在线_无码熟妇人妻av在线影片免费_在线无码一级伊伊_爽好舒服高H自慰软件_亚洲熟女区偷拍区高清区_午夜福利影院啪啪_亚洲国产黄片在线播放_中文字幕日韩精品乐乐影院_久久国产亚洲日韩欧美精品

掃描二維碼關(guān)注

首頁(yè) APP開(kāi)發(fā)小程序開(kāi)發(fā) 微信公眾號(hào) 網(wǎng)站建設(shè) 營(yíng)銷推廣 經(jīng)典案列 產(chǎn)品服務(wù) 關(guān)于我們

“學(xué)習(xí)不僅是掌握知識(shí)”

向書本學(xué)習(xí),還要向?qū)嵺`學(xué)習(xí)、向生活學(xué)習(xí)。消化已有知識(shí),
而且要力求有所發(fā)現(xiàn)、有所發(fā)明、有所創(chuàng)造

分享功能齊全php Mysql類

2019/4/2 8:38:25

分享功能齊全php Mysql類

view sourceprint?01.<!--? class mysql
{
  
private $host;
   
private $user;
  
private $pass;
  
private $database;
   
private $charset;
   
function __construct($host,$user,$pass,$database,$charset)
    {
      
$this--->host=$host;
      
$this->user=$user;
     
$this->pass=$pass;
      
$this->database=$database;
     
$this->charset=$charset;
      
$this->connect();
   }
  
private function connect()//連接函數(shù)
   {
       
mysql_connect($this->host,$this->user,$this->pass) or die ("連接數(shù)據(jù)庫(kù)服務(wù)器失敗!");
      
mysql_select_db($this->database) or die ("連接數(shù)據(jù)庫(kù)失敗!");
       
mysql_query("set names $this->charset");        
    }   
function select($sql,$tab,$col,$value)//選擇函數(shù)
   {        
$select=mysql_query("select $sql from $tab where $col=$value");
       
$row=mysql_fetch_array($select);       
    return $row;
    }    
function insert($tab,$col,$value)//插入數(shù)據(jù)函數(shù)
    {        
mysql_query("INSERT INTO $tab($col)values($value)");
    }   
function update($tab,$col,$new_value,$colm,$value)//更新數(shù)據(jù)函數(shù)
    {        
mysql_query("UPDATE $tab SET $col=$new_value where $colm=$value");    
    }   
function delete($tab,$col,$value)//刪除數(shù)據(jù)函數(shù)
   {        
mysql_query("DELETE FROM $tab where $col=$value");
     }   
function close()//關(guān)閉連接函數(shù)    
   {    
     mysql_close();
      
    }
}
//$mysql=new mysql("127.0.0.1","root","120360150","test","gbk");連接數(shù)據(jù)庫(kù)
//$sql=$mysql->select("*","admin","id","3");//選擇數(shù)據(jù)
//print_r($sql);//打印返回的數(shù)組
//$mysql->insert("admin","user_name,user_pass","'123','123'");插入數(shù)據(jù)
//$mysql->update("admin","user_pass","22","id","3");更新數(shù)據(jù)
//$mysql->delete("admin","id","4");刪除數(shù)據(jù)
//$mysql->close();關(guān)閉連接
?>
 


深圳市南山區(qū)南山街道南海大道西桂廟路北陽(yáng)光華藝大廈1棟4F、4G-04

咨詢電話:136 8237 6272
大客戶咨詢:139 0290 5075
業(yè)務(wù)QQ:195006118
技術(shù)QQ:179981967

精銳軟件

Copyright? 2018-2023 深圳精銳軟件技術(shù)有限公司 All Rights Reserved. ICP備案號(hào):粵ICP備18108116號(hào)-8 公安備案號(hào):粵公網(wǎng)安備44030502009460號(hào)