在數據庫中查詢數據——方法封裝

<?php
class DBDA
{
	public $host="localhost";  //數據庫地址
	public $uid = "root";  //數據庫用戶名
	public $pwd = "";   //密碼
	
	//執行sql語句,返回相應的結果
	//參數:$sql表明執行的sql語句;$type是sql語句類型0表明查詢,1表明其餘;$db表明操做的數據庫
	public function Query($sql,$type=0,$db="mydb")
	{
		//1.鏈接數據庫
		$dbconnect=new MySQLi($this->host,$this->uid,$this->pwd,$db);
		//2.判斷是否出錯
		!mysqli_connect_error() or die("鏈接失敗!");
		//3.執行sql語句
		$result=$dbconnect->query($sql);
		
		if($type==0)
		{
			return $result->fetch_all();
		}
		else
		{
			return $result;
		}
		
	} 
	
	
}

  

在之後的數據庫查詢中能夠直接調用php

相關文章
相關標籤/搜索