美文网首页
2019-05-30

2019-05-30

作者: Jqtong | 来源:发表于2019-06-03 09:45 被阅读0次

//获取zt评论

$result = memory('get', 'zt_comment_'.$tid);

if(empty($result)){

  $result = DB::fetch_all("SELECT pid, author, message FROM ".DB::table('forum_post')." WHERE tid=$tid and first=0 and status=0 ORDER BY dateline DESC LIMIT 30");

  foreach($result as &$item){

      $item['message'] = messagecutstr($item['message']);

}

  $res = memory('set', 'zt_comment_'.$tid, $result, 600);

}

if($callback){

  echo $callback."(".tb_json_encode($result).")";

}

exit;

相关文章

网友评论

      本文标题:2019-05-30

      本文链接:https://www.haomeiwen.com/subject/idqbtctx.html