学习到目前,自己封装的db类和pdo类
2018-06-22 05:12:39来源:未知 阅读 ()
DB封装类
<?php class DBDA { public $host = "localhost"; public $uid = "root"; public $pwd = "root"; public $dbname = "mydb"; public function Query($sql,$type=1) //连接数据库,参数默认为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; } } public function StrQuery($sql,$type=1) //此方法用于把取出的数据(二维数组)进行字符串拼接处理,用^和|分隔开。 { $db = new MySQLi($this->host,$this->uid,$this->pwd,$this->dbname); $result = $db->query($sql); if($type=="1") { $arr = $result->fetch_all(); $str = ""; foreach($arr as $v) { $str = $str.implode("^",$v)."|"; } $str = substr($str,0,strlen($str)-1); return $str; } else { return $result; } } public function JsonQuery($sql,$type=1) //此方法用于ajax中返回的是json数据类型时使用 { $db = new MySQLi($this->host,$this->uid,$this->pwd,$this->dbname); $result = $db->query($sql); if($type=="1") { $arr = $result->fetch_all(MYSQLI_ASSOC);//括号内为将参数改为关联数组 return json_encode($arr); } else { return $result; } } }
PDO封装类
<?php class DBDAP { public $host = "localhost"; public $uid = "root"; public $pwd = "root"; public $dbname = "mydb"; public function Query($sql,$type=1) { $dsn = "mysql:dbname=$this->dbname;host=$this->host"; $pdo = new PDO($dsn,"$this->uid","$this->pwd"); $result = $pdo->query($sql); if($type=="1") //参数为1时,返回查询结果 { return $result->fetchall(PDO::FETCH_ASSOC);//括号内的参数必须填写,不然取得的数据会发生重复现象。若不写,返回的数据有关联数据也有索引数据。 } else { $zeng = $pdo->prepare($sql); if($type=="2") //参数为2时,可以进行预处理语句 { return $zeng; }else { return $result; } } } public function StrQuery($sql,$type=1) //此方法用于对取出的数据(二维数组)进行拼接字符串处理 { $dsn = "mysql:dbname=$this->dbname;host=$this->host"; $pdo = new PDO($dsn,"$this->uid","$this->pwd"); $result = $pdo->query($sql); if($type=="1") { $arr = $result->fetchall(PDO::FETCH_ASSOC); $str = ""; foreach($arr as $v) { $str = $str.implode("^",$v)."|"; } $str = substr($str,0,strlen($str)-1); return $str; } else { $zeng = $pdo->prepare($sql); if($type=="2") { return $zeng; } else { return $result; } } } public function JsonQuery($sql,$type=1) //此方法用于ajax中用于返回为json数据类型时使用 { $dsn = "mysql:dbname=$this->dbname;host=$this->host"; $pdo = new PDO($dsn,"$this->uid","$this->pwd"); $result = $pdo->query($sql); if($type=="1") { $arr = $result->fetchall(PDO::FETCH_ASSOC); return json_encode($arr); } else { $zeng = $pdo->prepare($sql); if($type=="2") { return $zeng; } else { return $result; } } } }
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
下一篇:laravel发送邮件
- 详解php中的implements 使用 2020-03-18
- PHPExcel如何读取Excel文件 2020-03-10
- PHP实现的折半查询算法示例 2020-02-17
- 如何关闭PHP错误提示 2020-02-10
- 常用的Stream函数集 2020-02-10
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash