PHP封装返回Ajax字符串和JSON数组的方法
Laravel  /  管理员 发布于 1年前   2491
实例如下:
<?php
class DBDA{
public $host="localhost";
public $uid = "root";
public $pwd = "123";
public $dbname = "mydb";
//成员方法
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));
} else {
return $r;
}
}
}
以上这篇PHP封装返回Ajax字符串和JSON数组的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持
阿凡达123 在
golang 怎么做热更新中评论 也可以看看这个:https://github.com/edwingeng/hot..博主 在
hyperf框架常用命令-在centos7中退出命令及在docker容器中退出命令中评论 @路过的靓仔:cdn静态资源被墙,已修复..GGGGGGGGG 在
layui框架常用输入框介绍中评论 写的很好解决问题..路过的靓仔 在
hyperf框架常用命令-在centos7中退出命令及在docker容器中退出命令中评论 剩下好多 wait 状态的..激光豆芽 在
为什么你不能安逸?国内996为什么没有国外955香?中评论 国内现在无意义的内卷太多了..
Copyright·© 2019 侯体宗版权所有·
粤ICP备20027696号