在PHP中使用Joomla 2.5 user_profile字段

时间:2013-07-29 15:36:07

标签: php joomla joomla2.5

我正在使用以下内容获取用户打印在标签上的数据。

$db = JFactory::getDBO();
$user =& JFactory::getUser();
$uid = $user->id;

$query = $db->getQuery(true);

$query
    ->select(array('user_id', 'profile_key', 'profile_value', 'ordering'))
    ->from('#__user_profiles')
    ->where('user_id LIKE $uid')
    ->order('ordering ASC');

$db->setQuery($query);

$result = $db->loadObjectList();

foreach ( $result as $row ) {
   if ($row->profile_key == 'profile.firstname') $fname = $row->profile_value;
   if ($row->profile_key == 'profile.middlename') $mname = $row->profile_value;
   if ($row->profile_key == 'profile.lastname') $lname = $row->profile_value;
   if ($row->profile_key == 'profile.address1') $aline1 = $row->profile_value;
   if ($row->profile_key == 'profile.address2') $aline2 = $row->profile_value;
   if ($row->profile_key == 'profile.city') $city = $row->profile_value;
   if ($row->profile_key == 'profile.state') $state = $row->profile_value;
   if ($row->profile_key == 'profile.postalcode') $zipcode = $row->profile_value;
}

是否有更简单的方法来编写此代码?

我正在使用Joomla 2.5.11

3 个答案:

答案 0 :(得分:0)

您可以传递loadObjectList值'profile_key',这会将您的数组键入到配置文件键中,因此您可以自行跳过解析:

$db = JFactory::getDBO();
$user =& JFactory::getUser();
$uid = $user->id;

$query = $db->getQuery(true);

$query
    ->select(array('user_id', 'profile_key', 'profile_value', 'ordering'))
    ->from('#__user_profiles')
    ->where('user_id LIKE $uid')
    ->order('ordering ASC');

$db->setQuery($query);

$result = $db->loadObjectList('profile_key');

$fname = $result['profile.firstname']->profile_value;
// no need to loop on this
// can just grab values from the array as needed

答案 1 :(得分:0)

答案 2 :(得分:0)

使用

$profile = JUserHelper::getProfile( $user->id );

获取特定用户的用户个人资料的所有字段。然后用作

$address1 = $profile->profile['address1'];

访问必填字段。