php简洁实现查询数据库返回json数据_.docx

上传人:PIYPING 文档编号:11646379 上传时间:2021-08-27 格式:DOCX 页数:4 大小:12.06KB
返回 下载 相关 举报
php简洁实现查询数据库返回json数据_.docx_第1页
第1页 / 共4页
php简洁实现查询数据库返回json数据_.docx_第2页
第2页 / 共4页
php简洁实现查询数据库返回json数据_.docx_第3页
第3页 / 共4页
php简洁实现查询数据库返回json数据_.docx_第4页
第4页 / 共4页
亲,该文档总共4页,全部预览完了,如果喜欢就下载吧!
资源描述

《php简洁实现查询数据库返回json数据_.docx》由会员分享,可在线阅读,更多相关《php简洁实现查询数据库返回json数据_.docx(4页珍藏版)》请在三一文库上搜索。

1、php简洁实现查询数据库返回json数据_ 示例代码一: / 设置返回json格式数据 header(content-type:application/json;charset=utf8); /连接数据库 $link = mysql_connect(localhost, root, root) or die(Unable to connect to the MySQL!); mysql_query(SET NAMES UTF8); mysql_select_db(jilinwula, $link) or die(Unable to connect to the MySQL!); / 猎取分页参

2、数 $page = 0 ; $pageSize = 3; if(!is_null($_GETpage) $page = $_GETpage; if(!is_null($_GETpageSize) $pageSize = $_GETpageSize; / 查询数据到数组中 $result = mysql_query(select username,password from userinfo limit . $page . , . $pageSize .); $results = array(); while ($row = mysql_fetch_assoc($result) $results

3、 = $row; / 将数组转成json格式 echo json_encode($results); / 关闭连接 mysql_free_result($result); mysql_close($link); 示例代码二: ?php /需要执行的SQL语句 /单条 $sql=select id,name from tbl_user where id=1; /多条数据 /$sql=select id,name from tbl_user; /调用conn.php文件进行数据库操作 require(Conn.php); /提示操作胜利信息,留意:$result存在于conn.php文件中,被调用

4、出来 if($result) / $array=mysql_fetch_array($result,MYSQL_ASSOC); /*数据集 $users=array(); $i=0; while($row=mysql_fetch_array($result,MYSQL_ASSOC) echo $rowid.-.$rowname./br; $users$i=$row; $i+; echo json_encode(array(dataList=$users); */ /*单条数据*/ $row=mysql_fetch_row($result,MYSQL_ASSOC); echo json_encode(array(jsonObj=$row); mysql_free_result($result); /释放结果 mysql_close(); /关闭连接 ? 更多信息请查看IT技术专栏 .

展开阅读全文
相关资源
猜你喜欢
相关搜索

当前位置:首页 > 科普知识


经营许可证编号:宁ICP备18001539号-1