发布网友 发布时间:2022-04-10 05:51
共6个回答
懂视网 时间:2022-04-10 10:12
<!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>
连接数据库返回数组和字符串的类
标签:func public class sub mysqli each 字符串 类型 返回
热心网友 时间:2022-04-10 07:20
代码如下:热心网友 时间:2022-04-10 08:38
我初学的时候也遇到了这个问题。热心网友 时间:2022-04-10 10:13
$GetArr=array();热心网友 时间:2022-04-10 12:04
循环读取!热心网友 时间:2022-04-10 14:12
private static final SessionFactory sessionFactory = new Configuration()