如何在 phpBB 中获取帖子的作者 ID?
如何从主题内部的 viewtopic.php 文件中获取作者 ID?
作者主题 ID 在 viewforum 中(或主题 - 这并不重要)。
我想知道如何获取 ID 并在 viewtopic.php 文件中使用它。
How to get the author ID from inside a theme, in the viewtopic.php file?
The author-theme id is in viewforum (or topic - it doesn't matter very much).
I want to know how to get the ID and use it in the viewtopic.php file.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 $topic_data['topic_poster'] 获取主题作者 ID,该 ID 在 viewtopic.php 文件的第 272 行获取。然而,如果您正在查找该主题的每个帖子/响应的作者 ID,您可以从 viewtopic.php 文件内的 $poster_id 变量中获取该 ID。
You can get the topic author ID using the $topic_data['topic_poster'] which is fetched on line 272 in viewtopic.php file. If you are however looking for the ID of the author of each individual post / response to the topic, you can fetch that from $poster_id variable inside viewtopic.php file.