溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

php面象對(duì)象數(shù)據(jù)庫操作類的實(shí)例講解

發(fā)布時(shí)間:2021-09-06 14:48:57 來源:億速云 閱讀:122 作者:chen 欄目:開發(fā)技術(shù)

這篇文章主要介紹“php面象對(duì)象數(shù)據(jù)庫操作類的實(shí)例講解”,在日常操作中,相信很多人在php面象對(duì)象數(shù)據(jù)庫操作類的實(shí)例講解問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對(duì)大家解答”php面象對(duì)象數(shù)據(jù)庫操作類的實(shí)例講解”的疑惑有所幫助!接下來,請(qǐng)跟著小編一起來學(xué)習(xí)吧!

本文實(shí)例講述了php面象對(duì)象數(shù)據(jù)庫操作類。分享給大家供大家參考。

具體實(shí)現(xiàn)代碼如下:

復(fù)制代碼 代碼如下:

//此處構(gòu)造一個(gè)數(shù)據(jù)庫操作類,封裝所有數(shù)據(jù)庫操作
//可以擴(kuò)展便于后臺(tái)管理程序的使用
Class MySQLDB 

   var $host; 
   var $user; 
   var $passwd; 
   var $database;
   var $conn; 
 
   //利用構(gòu)造函數(shù)實(shí)現(xiàn)變量初始化 
   //同時(shí)連接數(shù)據(jù)庫操作
   function MySQLDB($host,$user,$password,$database) 
   { 
      $this->host = $host; 
      $this->user = $user; 
      $this->passwd = $password; 
      $this->database = $database; 
      $this->conn=mysql_connect($this->host, $this->user,$this->passwd) or 
     die("Could not connect to $this->host"); 
      mysql_select_db($this->database,$this->conn) or 
     die("Could not switch to database $this->database"); 
   } 
 
   //該函數(shù)用來關(guān)閉數(shù)據(jù)庫連接
   function Close() 
   { 
      MySQL_close($this->conn); 
   } 
 
   //該函數(shù)實(shí)現(xiàn)數(shù)據(jù)庫查詢操作
   function Query($queryStr) 
   { 
      $res =Mysql_query($queryStr, $this->conn) or 
      die("Could not query database"); 
      return $res; 
   } 
 
   //該函數(shù)返回記錄集
   function getRows($res) 
   { 
      $rowno = 0; 
      $rowno = MySQL_num_rows($res); 
      if($rowno>0) 
      { 
         for($row=0;$row<$rowno;$row++ ) 
         { 
            $rows[$row]=MySQL_fetch_array($res);
            //本來為MySQL_fetch_row,但是不能以數(shù)組的方式來提取,只能用索引
            //這樣可以用索引和名稱,更為方便
         } 
         return $rows; 
      } 
    } 
 
    //該函數(shù)取回?cái)?shù)據(jù)庫記錄數(shù)
    function getRowsNum($res) 
    { 
       $rowno = 0; 
       $rowno = mysql_num_rows($res); 
       return $rowno;
    } 
 
 //該函數(shù)返回?cái)?shù)據(jù)庫表字段數(shù)
 function getFieldsNum($res)
 {
    $fieldno = 0;
    $fieldno = mysql_num_fields($res);
    return $fieldno;
 }
 
 //該函數(shù)返回?cái)?shù)據(jù)庫表字段名稱集
 function getFields($res)
 {
      $fno = $this->getFieldsNum($res);
      if($fno>0) 
      { 
         for($i=0;$i<$fno;$i++ ) 
         { 
            $fs[$i]=MySQL_field_name($res,$i);//取第i個(gè)字段的名稱
         } 
         return $fs;
      } 
 }

 
//使用時(shí)直接require該文件,然后實(shí)例化:
 
$SqlDB = new MySQLDB("localhost","root","root","testdb");
 
$sql = "select * from tableX...";
 
$result = $SqlDB->Query($sql);//查詢
 
$rs = $SqlDB->getRows($result);//獲得記錄集
 
$num = $SqlDB->getRowsNum($result);//獲得記錄數(shù)
 
...剩下的操作就是循環(huán)取值,
 
for($i=0;$i<$num;$i++){
   echo($rs[$i]["字段名"]);
}
 
...


最后不要忘記關(guān)閉數(shù)據(jù)路連接

復(fù)制代碼 代碼如下:

$SqlDB->Close();

當(dāng)然這句可以不要,php會(huì)自動(dòng)注銷!但是這樣能夠養(yǎng)成一個(gè)好的習(xí)慣,最好還是加上!其他自己類推。

到此,關(guān)于“php面象對(duì)象數(shù)據(jù)庫操作類的實(shí)例講解”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注億速云網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

php
AI