初学者,json输出

WBOY
Release: 2016-06-13 11:57:34
Original
863 people have browsed it

菜鸟求助,json输出

本帖最后由 mxh861001 于 2014-05-19 21:12:45 编辑

foreach ($query->result_array() as $row)
{
$data = array(
'id' => $row['id'],
'title' =>$row['title']
);
}

echo json_encode($data);
Copy after login

前端为何只输了一组数据?
CI框架
({"id":"2","title":"\u65b0\u7586VS\u5317\u4eac"})
------解决方案--------------------
foreach ($query->result_array() as $row)
{
$data[]= array(
'id' => $row['id'],
'title' =>$row['title']
);
}
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!