destoon是商务信息网站程序,相信大家用这个程序建站,后来不知道怎么制作json数据,网站搜索也没有找到答案,今天给大家分享如何把destoon数据生成json,用于百度小程序、QQ小程序和微信小程序。
由于系统是GB2312编码,所以服务端编写的时候我们进行了一些编码转换的处理,保证服务端访问的编码是UTF-8就可以。不多了,下面干货来了。如果你是程序或此段代码对你有帮助,希望收藏!!
>?php
header("Content-Type: text/html;charset=utf-8");
define('DT_REWRITE', true);
require '../common.inc.php';
$lists = array();
//展示栏目下的子栏目;
if(!empty($areaid)){
if(!$AREA[$areaid]["parentid"]){
$condtion="and areaid in (".$AREA[$areaid]["arrchildid"].")";
$condtions="areaid in (".$AREA[$areaid]["arrchildid"].")";
}else{ $condtion="and areaid=$areaid"; $condtions="areaid=$areaid"; }
}
//echo打印destoon数据;
if(empty($areaid)) {
$sql_brand="select itemid,areaid,catid,title,company,hits,edittime,thumb(字段) from dt_brand_13(表名) order by hits desc limit 0,14";
}
//$sql_brand="select 字段 from 表名 order by hits desc limit 0,14";
$result=$db-<query($sql_brand);< p="" style="-webkit-tap-highlight-color: transparent; box-sizing: border-box; color: inherit; margin: 0px; outline: none; border: 0px; padding: 0px; list-style: none; font-size: inherit;">
while($r = $db-<fetch_array($result)) {
$lists[] = $r;
}
$str=json_encode($lists);
$str= preg_replace("#u([0-9a-f]+)#ie","iconv('UCS-2','UTF-8', pack('H4', '1'))",$str);
echo $str;
?<
希望对有帮助
腾云数据-为您提供快速、稳定、安全的专业云计算服务。www.qqidc.com.cn,联系QQ:810379922 新浪微博:腾云数据
本文链接: http://www.qqidc.com.cn/blog/158.html