/*while($s = $db->fetch_array($r))
{
$data[]=array(
'contentid'=>$s['contentid'],
'thumb'=>$s['thumb'],
'title'=>$s['title'],
'description'=>$s['description']
);
}
echo json_encode($data); 这个方法没有真正将数据转化成json ,而且无法输出中文 */
//正确格式如下
$json = '';
while (!!$row = mysql_fetch_array($r, MYSQL_ASSOC)) {
foreach ( $row as $key => $value ) {
$row[$key] = urlencode(str_replace("\n","", $value));
}
$json .= urldecode(json_encode($row)).',';
}
echo '['.substr($json, 0, strlen($json) - 1).']';
mysql_close();
- 本文固定链接: http://ttfde.top/index.php/post/198.html
- 转载请注明: admin 于 TTF的家园 发表
《本文》有 0 条评论