获取用户的用户名 - MyBB



我想知道如何获取用户的用户名。我想做的是像这样显示它:

<a href="{$mybb->settings['bburl']}/usercp.php?action=profile">Username here</a>我试过这个:

{$mybb->user['name']}'但这并不成功,我似乎在谷歌上找不到任何东西。

感谢您的任何帮助!

我对MyBB没有经验,但经过一些研究,我发现了几种不同的方法。

$user = get_user($uid);
echo $user['username'];

global $db;
$qry = $db->query("SELECT uid FROM ".TABLE_PREFIX."users WHERE username = '".$usernamevar."'"); 

我想你可以像这样组合所有内容。

<?php
define("IN_MYBB", 1);
require ('global.php'); // be sure that u r running this php-code in the same
                        // directory of global.php, or else change the path.
if($mybb->user['uid'] > 0)
{
    $uid  = $mybb->user['uid'];
    $user = get_user($uid);
    $name = $user['username'];
}
    // custom else here: in case of not logged-in user
?>
<a href="{$mybb->settings['bburl']}/usercp.php?action=profile"><?echo $name?></a>

尝试将这个放入您的模板中。

{$mybb->user['username']}

无需对现有变量使用 PHP。

相关内容

  • 没有找到相关文章

最新更新