PHP封装返回Ajax字符串和JSON数组的方法
程序员文章站
2024-03-07 15:23:51
实例如下:
实例如下:
<?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数组的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
上一篇: php使用PDO获取结果集的方法
推荐阅读
-
PHP封装返回Ajax字符串和JSON数组的方法
-
在PHP语言中使用JSON和将json还原成数组的方法
-
PHP实现多维数组转字符串和多维数组转一维数组的方法,多维维数_PHP教程
-
PHP实现多维数组转字符串和多维数组转一维数组的方法,多维维数
-
Go 结构体、数组、字典和 json 字符串的相互转换方法
-
PHP处理Json字符串解码返回NULL的解决方法,jsonnull_PHP教程
-
PHP 数组和字符串之间相互转换的方法
-
PHP处理Json字符串解码返回NULL的解决方法,jsonnull
-
ThinkPHP通过AJAX返回JSON的两种实现方法,thinkphpjson_PHP教程
-
jquery拼接ajax 的json和字符串拼接的方法