网站地图    收藏   

主页 > 后端 > discuz >

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

来源:自学PHP网    时间:2014-12-03 20:51 作者: 阅读:

[导读] 获取用户信息 主题数$_G[ 39;tan 39;][ 39;threads 39;]=getuserprofile( 39;threads 39;); 回帖数$_G[ 39;tan 39;][ 39;posts 39;]=getuserprofile( 39;posts 39;)-$_G[ 39;tan...

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

  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'

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论