loaducenter(); 初始化可以条用uc函数
getuserbyuid(); 根据uid查询用户信息
setloginstatus($user,cookietime); 修改用户登录状态 传入用户数组
uc_get_user($name,0) UC函数查询uc用户信息,默认根据用户名查询,1 根据id查询
showmessage(); 弹出提示
更新主题浏览次数
C::t('forum_thread')->increase($tid, array('views' => 1), true, 0);
回复帖子
$modelpost=C::m('forum_post',$tid);调用 class/model/model_forum_post
$modelpost->newreply($data) 插入数据
$modelpost->replyfeed(); 更新回复次数
发布主题
$modelpost=C::m('forum_thread',$tid); 调用 class/model/model_forum_thread
$thread->newthread($params);插入数据
内容转义
include (source/function/function_edit)
html2bbcode() 转义内容中的html为dz专用标签
include (source/function/function_discuzcode)
discuzcode()解析dz标签