phpbb - 获取自定义配置文件字段的值

时间:2014-01-22 19:01:36

标签: php phpbb

我想查看用户输入的购买代码。

因此,在注册页面上,有一个自定义配置文件字段“purchase_code”,我想使用它来检查代码。

所以我的问题: 使用哪个函数,我可以获得自定义配置文件字段“purchase_code”的值?

像“get_value_of_purchase_code”....

1 个答案:

答案 0 :(得分:1)

include_once($phpbb_root_path . 'includes/functions_profile_fields.' . $phpEx);
$user_id = 2; //The id of the user that you want to get the custom profiles fields
$cp = new custom_profile();
$user_fields = $cp->generate_profile_fields_template('grab', $user_id);

这会在$ user_fields中创建一个包含所有选定用户自定义字段的多维数组,包括值和所有字段数据。