当前位置:首页 > CMS教程 > Discuz > 列表

discuz在帖子列表页调取主题数、回帖数、收藏数、新短消息

发布:smiling 来源: PHP粉丝网  添加日期:2014-07-22 15:58:14 浏览: 评论:0 
  1. //获取用户信息 
  2. //主题数 
  3. $_G['tan']['threads']=getuserprofile('threads'); 
  4. //回帖数 
  5. $_G['tan']['posts']=getuserprofile('posts')-$_G['tan']['threads']; 
  6. //收藏数 
  7. $_G['tan']['favtimes']=getuserprofile('favtimes'); 
  8. //新短消息 
  9. loaducenter();//这个必须加上否则会报错,这个是用来调用Ucenter相关函数信息 
  10. $arr = uc_pm_checknew($_G['uid'],1); 

这个为上面的解释,getuserprofile 获取用户信息任意字段函数,在举几个例子供大家参考,此函数,提供一个参数,内容为用户的字段名,即可返回出来他值的内容.

如:我要获取用户

威望::getuserprofile('extcredits1')

金钱: getuserprofile('extcredits2')

贡献:getuserprofile('extcredits3')

用户uid:getuserprofile(uid') 

听从:getuserprofile('follower ')  

收听:getuserprofile('following ')  

主题:getuserprofile('threads') 

直接在你需要的页面直接写就可以.

  1. loaducenter()在文件 source/function/function_core.php 中: 
  2. function loaducenter() { 
  3.  require_once DISCUZ_ROOT.'./config/config_ucenter.php'
  4.  require_once DISCUZ_ROOT.'./uc_client/client.php'

Tags: discuz回帖 短消息 帖子

分享到: