php部分---建立串連資料庫類

來源:互聯網
上載者:User

標籤:dbn   style   class   數組   資料庫   截取   迴圈   function   substr   

class DBDA{    public $host="localhost";    public $uid="root";    public $pwd="123";    public $dbname="test1";    //1.給一個sql語句,返回結果集    //設定一個變數$type  預設為1,1代表查詢語句,0代表增刪改語句    function Query($sql,$type=1)    {        $db=new MySQLi($this->host,$this->uid,$this->pwd,$this->dbname);        $result=$db->query($sql);        if($type==1)        {            return $result->fetch_all(); //返回的是一個二維數組            }            else            {                return $result;         //返回true或者false                }        }    //2.返回一個關聯陣列的方法    function GuanQuery($sql,$type=1)    {        $db=new MySQLi($this->host,$this->uid,$this->pwd,$this->dbname);        $result=$db->query($sql);        if($type==1)        {            $attr=array();        //定義一個數組,準備接收下邊取到的值        while($a=$result->fetch_assoc())        {            $attr[]=$a;            //把取到的值放到數組中            return $attr;            }        }        else        {            return $result;            }        }    //3.造一個方法,把取到的資料放到一個字串中    function StrQuery($sql,$type=1)    {        $db=new MySQLi($this->host,$this->uid,$this->pwd,$this->dbname);        $result=$db->query($sql);        if($type==1)        {            $attr=$result->fetch_all();            $str="";                                   //定義一個空的字串            foreach($attr as $v)            {                $str=$str.implode("^",$v);                  //取到一個資料,拼接到下次迴圈進來的時候                $str=$str."|";                              //拼接完一個資料,往後邊添加一個“|”                }            return substr($str,0,strlen($str)-1);           //截取字串最後的“|”,然後直接輸出            }            else             {                return $result;                }                }    }

 

php部分---建立串連資料庫類

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.