discuz在帖子列表页调取主题数、回帖数、收藏数、新短消息
发布:smiling 来源: PHP粉丝网 添加日期:2014-07-22 15:58:14 浏览: 评论:0
- //获取用户信息
- //主题数
- $_G['tan']['threads']=getuserprofile('threads');
- //回帖数
- $_G['tan']['posts']=getuserprofile('posts')-$_G['tan']['threads'];
- //收藏数
- $_G['tan']['favtimes']=getuserprofile('favtimes');
- //新短消息
- loaducenter();//这个必须加上否则会报错,这个是用来调用Ucenter相关函数信息
- $arr = uc_pm_checknew($_G['uid'],1);
这个为上面的解释,getuserprofile 获取用户信息任意字段函数,在举几个例子供大家参考,此函数,提供一个参数,内容为用户的字段名,即可返回出来他值的内容.
如:我要获取用户
威望::getuserprofile('extcredits1')
金钱: getuserprofile('extcredits2')
贡献:getuserprofile('extcredits3')
用户uid:getuserprofile(uid')
听从:getuserprofile('follower ')
收听:getuserprofile('following ')
主题:getuserprofile('threads')
直接在你需要的页面直接写就可以.
- loaducenter()在文件 source/function/function_core.php 中:
- function loaducenter() {
- require_once DISCUZ_ROOT.'./config/config_ucenter.php';
- require_once DISCUZ_ROOT.'./uc_client/client.php';
- }
Tags: discuz回帖 短消息 帖子
相关文章
- ·调用DISCUZ X2.5论坛html格式的帖子方法(2014-04-01)
- ·关于DISCUZ帖子内容带图片不能显示问题的修正(2014-04-02)
- ·discuz论坛帖子内容动态链接批量替换成静态链接 discuz帖子(2014-04-02)
- ·Discuz! 如何禁止帖子发外链和签名链接(2014-04-03)
- ·Discuz帖子内容中的外部链接加上rel=nofollow(2014-07-22)
- ·Discuz! X3.2如何禁止帖子发外链和签名链接(2014-11-19)
- ·discuz x2.5 sitemap每页调取100条最新帖子文章(2014-12-06)
- ·discuz首页只显示帖子列表 去掉板块(2015-04-04)
- ·Discuz批量替换帖子内容的方法(使用SQL更新数据库)(2021-03-02)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)