首页 > 数据库技术 > 详细

封装 DBDA 类 StrQuery 、JSONQuery

时间:2017-01-08 22:24:51      阅读:345      评论:0      收藏:0      [点我收藏+]
<?php
class DBDA
{ 
	public $host="localhost";
	public $uid="root";
	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;
		}
	}
	
	
	
}

  

封装 DBDA 类 StrQuery 、JSONQuery

原文:http://www.cnblogs.com/bhmmlxieliming/p/6262854.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!