在phpBB中创建address_list数组?

发布于 2024-10-25 02:59:50 字数 734 浏览 5 评论 0原文

有人可以解释 address_list 在 phpBB 中如何工作吗?我正在尝试创建一个用于自动插入私人消息的小函数,并且认为到目前为止我已经完成了:

我们会说我当前的用户数组如下所示:

$users = array('100','150 ','77','94')

其中每个数字都是用户的 ID。

当前的 address_list 看起来像这样:

'address_list' => array ('u' => array(2 => 'to'))

是的,它是直接取自 http://wiki.phpbb.com/Using_phpBB3%27s_Basic_Functions#1.4.7._Inserting_Posts_and_Private_Messages

据我所知,解释告诉我它使用一个二维数组,但我不需要发送到组,而且我什至不知道如何将二维数组放入该方程中。我想做的就是发送给该列表中的第一个用户 ID,然后密件抄送所有其他用户。

话又说回来,phpBB 的文档对我来说总是几乎不可能遵循。

感谢任何和所有的帮助。

Can someone explain how address_list works in phpBB? I'm attempting to create a small function for automatically inserting private messages and think I have it up to this point:

We'll say my current user array looks like this:

$users = array('100','150','77','94')

where each number is a user's ID.

current address_list looks like this:

'address_list' => array ('u' => array(2 => 'to'))

Yes, it has been taken directly from http://wiki.phpbb.com/Using_phpBB3%27s_Basic_Functions#1.4.7._Inserting_Posts_and_Private_Messages

As far as I can tell, the explanation is telling me that it uses a two-dimensional array, but I don't need to send to groups, and I'm not even sure how to stick a two-dimensional array into that equation. All I want to do is send to the first userid on that list, and the BCC all the others.

Then again, phpBB's documentation has always been near-impossible for me to follow.

Any and all help is appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

最丧也最甜 2024-11-01 02:59:50

格式如下:

'address_list' => array(
    'u' => array(2 => 'to', 3 => 'bcc'),
    'g' => array(40 => 'to', 41 => 'bcc'),
)
  • u 包含 user_id => 的映射。收件人类型
  • g 包含 group_id => 的映射收件人类型

收件人类型可以是tobcc

此示例将向用户 2 和组 40 发送私信,并向用户 3 和组 41 发送密件抄送。

The format is as follows:

'address_list' => array(
    'u' => array(2 => 'to', 3 => 'bcc'),
    'g' => array(40 => 'to', 41 => 'bcc'),
)
  • u contains a mapping of user_id => recipient_type.
  • g contains a mapping of group_id => recipient_type.

A recipient type can be either to or bcc.

This example will send the PM to user 2 and group 40, and also send a BCC to user 3 and group 41.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文