如何在discuz的discuz.htm中调用当前登陆用户的主题、各项积分等信息

WBOY
Release: 2016-06-20 12:28:21
Original
1747 people have browsed it

如何在discuz的discuz.htm中调用当前登陆用户的主题、各项积分等信息
目前已知的只有:$_G['member'][credits] 是当前用户的积分


回复讨论(解决方案)

\source\module\forum\forum_index.php 
在这个页面中添加如下代码,在模板 discuz.htm 中直接调用就可以了

//威望,金钱 之类的可直接调用echo "<pre class="brush:php;toolbar:false">";print_r($_G['setting']['extcredits']);echo "
Copy after login
Copy after login
";//当前用户的 主题信息列表$threadList = C::t('forum_thread')->fetch_all_by_authorid_displayorder($_G['uid']);echo "
";print_r($threadList);echo "
Copy after login
Copy after login
";

\source\module\forum\forum_index.php
在这个页面中添加如下代码,在模板 discuz.htm 中直接调用就可以了

//威望,金钱 之类的可直接调用echo "<pre class="brush:php;toolbar:false">";print_r($_G['setting']['extcredits']);echo "
Copy after login
Copy after login
";//当前用户的 主题信息列表$threadList = C::t('forum_thread')->fetch_all_by_authorid_displayorder($_G['uid']);echo "
";print_r($threadList);echo "
Copy after login
Copy after login
";



不行啊

怎么不行


怎么不行




而且在输出的位置调用变量 输出值是空

//威望,金钱 之类的可直接调用foreach($_G['setting']['extcredits'] as $extcreditid=>$v){	//num 就是你要显示的值	$_G['setting']['extcredits'][$extcreditid]['num'] = getuserprofile('extcredits'.$extcreditid);}print_r($_G['setting']['extcredits']);
Copy after login
Copy after login

Array
(
[1] => Array
(
[img] =>
[title] => 威望
[unit] =>
[ratio] => 0
[showinthread] =>
[allowexchangein] =>
[allowexchangeout] =>
[num] => 0
)

[2] => Array
(
[img] =>
[title] => 金钱
[unit] =>
[ratio] => 0
[showinthread] =>
[allowexchangein] =>
[allowexchangeout] =>
[num] => 25
)

[3] => Array
(
[img] =>
[title] => 贡献
[unit] =>
[ratio] => 0
[showinthread] =>
[allowexchangein] =>
[allowexchangeout] =>
[num] => 0
)

)

//威望,金钱 之类的可直接调用foreach($_G['setting']['extcredits'] as $extcreditid=>$v){	//num 就是你要显示的值	$_G['setting']['extcredits'][$extcreditid]['num'] = getuserprofile('extcredits'.$extcreditid);}print_r($_G['setting']['extcredits']);
Copy after login
Copy after login

Array
(
    [1] => Array
        (
            [img] => 
            [title] => 威望
            [unit] => 
            [ratio] => 0
            [showinthread] => 
            [allowexchangein] => 
            [allowexchangeout] => 
            [num] => 0
        )

    [2] => Array
        (
            [img] => 
            [title] => 金钱
            [unit] => 
            [ratio] => 0
            [showinthread] => 
            [allowexchangein] => 
            [allowexchangeout] => 
            [num] => 25
        )

    [3] => Array
        (
            [img] => 
            [title] => 贡献
            [unit] => 
            [ratio] => 0
            [showinthread] => 
            [allowexchangein] => 
            [allowexchangeout] => 
            [num] => 0
        )

)



那模版里面的变量呢? 是$_G['setting']['extcredits'][1]吗?显示值是空

数据都显示出来了,你循环啊

$extcredits['title'] - $extcredits['num']



威望 - 0
金钱 - 25
贡献 - 0

数据都显示出来了,你循环啊

$extcredits['title'] - $extcredits['num']



威望 - 0
金钱 - 25
贡献 - 0

我是想单独调用每一项。因为给每一项都有一个标签。

数据都显示出来了,你循环啊

$extcredits['title'] - $extcredits['num']



威望 - 0
金钱 - 25
贡献 - 0

而且代码又溢出了,head标签的内容也被溢出到body标签里面了

$_G['setting']['extcredits'][1]['num']
$_G['setting']['extcredits'][2]['num']
...

$_G['setting']['extcredits'][1]['num']
$_G['setting']['extcredits'][2]['num']
...


调用出来了,可是代码溢出

那你就把输出的地方去掉,print_r
你该多看看手册

你该多看看手册

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!