无法从Joomla 1.5中的jos_users中检索列值

时间:2014-02-01 05:46:22

标签: joomla joomla1.5

我有一个问题。在jos_users表中,有一些列引用用户详细信息等。enter image description here

我可以使用

检索所有其他列
$user = JFactory::getUser();
$userId = $user->get('columnname');
echo $userId;

但为什么我无法检索列user_group_id?

它什么都不返回。

1 个答案:

答案 0 :(得分:0)

当您使用Joomla 1.5时,您可以使用以下内容获取用户的用户组:

$user = JFactory::getUser();
$user_type = $user->get('usertype');
echo $user_type;

请记住,自{Jomla 1.6}以来'usertype'已被弃用,因此如果您决定升级到最新的Joomla版本,则需要替换此代码。