你如何使用profile_save_profile?
foreach ($users as $user) { //list of users to act on
$by_user = views_get_view_result('attendance', 'page_3', array($user->uid)); //view containing info about this user
$edit = array('profile_attendance_short_term' => substr(count($by_user) / count($general), 0, 5)); //calculation
profile_save_profile($edit, $user->uid, 'Fencing Information', TRUE); //update user profile???
}
我做错了什么?
编辑:这也失败了:
$edit = array('profile_attendance_short_term' => 9001);
profile_save_profile($edit, user_load(3), 'Fencing Information', TRUE);
答案 0 :(得分:3)
我认为问题在于您将$register
(最后一个参数)指定为TRUE
。这仅在创建新帐户时使用,因此如果设置,您将只能保存注册页面上可用的配置文件字段,这可能不是您想要的。
因为它不是必需的参数,所以你可以把它留下来。
当涉及到编辑格式时,如果来自表单的值,它需要与$form_state['values']
相同的格式,例如:
<?php
$edit = array(
'fencing_style' => 'Aggressive',
'favorite_weapon' => 'sabre',
'left_handed' => FALSE,
);
profile_save_profile($edit, $user, 'Fencing Information');
答案 1 :(得分:0)
查看profile_save_profile函数,看起来它希望传入$ user而不是$ user-&gt; uid - 所以尝试按如下方式修改你的调用:
profile_save_profile($edit, $user, 'Fencing Info', TRUE);