连接数据库返回数组和字符串的类

Posted 0710赵冬

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了连接数据库返回数组和字符串的类相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
</head>
<body>
<?php
class DBDA{
public $host = "localhost";
public $uid = "root";
public $pwd = "";
public $dbname = "lianxi";

/*
query方法:执行用户给的SQL语句,并返回相应的结果
$sql:用户需要执行的SQL语句
$type:用户需要执行的SQL语句的类型
return:如果是增删改返回true或false,如果是查询返回二维数组
*/
public function query($sql,$type=0){
$db = new mysqli($this->host,$this->uid,$this->pwd,$this->dbname);
if(mysqli_connect_error()){
return "连接失败!";
}
$result = $db->query($sql);
if($type){
return $result;
}else{
return $result->fetch_all();
}
}
public function strqurey($sql,$type){
$db = new MySQLi($this->host,$this->uid,$this->pwd,$this->dbname);
if(mysqli_connect_error()){
return "连接失败!";
}
$result = $db->query($sql);
if($type){
return $result;
}else{
return $result->fetch_all();
$str="";
foreach($arr as $v){
$str=$str.implode("^", $v)."|";
}
$str=substr($str,0,strlen($str)-1);
return $str;
}
}
}

?>
</body>
</html>

以上是关于连接数据库返回数组和字符串的类的主要内容,如果未能解决你的问题,请参考以下文章

无法从 app.config 获取连接字符串

JS重要的内置对象

ODBC 连接仅返回字符串作为数据类型

字符串和数组常用的方法

数组的剩余方法

php 用于PHP PDO连接的类 - 单例实现。实例方法返回具有指定连接的新PDO连接