<?php
class DBDA
{ 
	public $host="localhost";
	public $u;
	public $pwd="密码";
	public $dbname="数据库名";
	
	//成员方法
	public function Query($sql,$type=1)
	{
		$db = new MySQLi($this->host,$this->uid,$this->pwd,$this->dbname);
		$r = $db->query($sql);
		
		if ($type==1)
		{
			return $r->fetch_all();	
		}
		
		else
		{
			return $r;
		}
	}
	


//返回字符串的方法 
	public function StrQuery($sql,$type=1)
	{
		$db = new MySQLi($this->host,$this->uid,$this->pwd,$this->dbname);
		$r = $db->query($sql);
		
		if($type==1)
		{
			$attr = $r->fetch_all();
			$str = "";
			foreach($attr as $v)
			{
				$str .= implode("^",$v)."|";
			}
			
			return substr($str,0,strlen($str)-1);

		}
		else
		{
			return $r;
		}
	}
	
	
	//返回JSON
	function JSONQuery($sql,$type=1)
	
	{
		$db = new MySQLi($this->host,$this->uid,$this->pwd,$this->dbname);
		$r = $db->query($sql);
		
		if ($type==1)
		{
			return json_encode ($r->fetch_all(MYSQLI_ASSOC));//返回关联数组  fet_all 慎用 放在服务器上有问题 要求配置
		}
		
		else
		{
			return $r;
		}
	}
	
	
	
}

  

相关文章:

  • 2021-07-03
  • 2021-09-28
  • 2021-11-16
  • 2021-05-23
  • 2021-07-05
  • 2021-09-28
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-01-06
  • 2021-06-04
  • 2022-01-28
  • 2021-10-20
  • 2021-05-09
相关资源
相似解决方案