drhs13583567608 2013-05-29 06:54
浏览 34
已采纳

如何从mysqli结果中构建正确的json?

I am trying to build a json object from my mysqli result. How do I go about it. At the moment it does not create a json looking object.

Here is my code:

  1. $result = $dataConnection->prepare("SELECT id, artist, COUNT(artist) AS cnt FROM {$databasePrefix}users GROUP BY artist ORDER BY cnt DESC LIMIT 0 , 30");
  2. $result->execute();
  3. if($result->error)
  4. {
  5. die("That didn't work. I get this: " . $result->error);
  6. }
  7. $result->bind_result($id, $artist, $count);
  8. $data = array();
  9. while($result->fetch()){
  10. $data[] = '{ id :'.$id.', artist :'.$artist.', count :'.$count.'}';
  11. }
  12. echo json_encode($data);
  13. $dataConnection->close();

I want a data object like:

{"id":"27","artist":"myArtist","count":"29"},....
  • 写回答

4条回答 默认 最新

  • duanhuangyun3887 2013-05-29 06:57
    关注

    Don't build your json for the values array that you will call json_encode on

    instead of:

    $data[] = '{ id :'.$id.', artist :'.$artist.', count :'.$count.'}';
    

    do

    $data[] = array("id"=>$id, "artist"=>$artist, "count"=>$count);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)
编辑
预览

报告相同问题?

悬赏问题

  • ¥15 ArcGIS Pro时空模式挖掘工具
  • ¥15 获取到海康hls的视频地址是http协议导致无法正常播放
  • ¥15 seL4如何实现从终端输入数据
  • ¥15 方波信号时频特征分析/信号调制与解调过程分析/利用DFT分析信号频谱
  • ¥20 两台硬件相同的琴设备一个是高阶版,怎么扒到初阶版
  • ¥30 matlab求解周期与坐标
  • ¥15 MATLAB图片转灰度格式问题
  • ¥15 把h5作品链接复制到自己的账号里
  • ¥15 ensp抓包实验配置
  • ¥15 强化学习算法、MRO
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部