This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 5 years ago.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
我发现将鼠标悬停在未读主题图标上很有帮助。我看到:
Trilarion之前提到过,参数t决定了主题。
view=newest
是必要的部分编辑
澄清一下:我在 phpbb 2.0 板上看到了它。
I found it helpful to hover an unread-topic-icon. I saw:
As Trilarion mentioned before, parameter t determines the topic.
view=newest
is the necessary partEdit
For clarification: I saw it on a phpbb 2.0 board.
从 phpbb 3.0.12 开始,我还没有找到任何官方记录的方法,但以下方法可能会解决问题:
其中只有 start=50000 很重要。 f和t参数决定子论坛和线程,start参数决定线程中的帖子。将 start 参数的值设置为一个高得离谱的值似乎会触发 phpbb 显示最后一页。
As of phpbb 3.0.12 I haven't found any officially documented way but the following might do the trick:
where only the start=50000 is important. the f and t parameters are to determine the subforum and the thread, the start parameter determines the post in the thread. Setting the value of the start parameter to a ridiculously high value seems to trigger phpbb to show the last page.
不幸的是不是,您必须首先检索有多少页。
Unfortunately not, you have to retrieve how many pages there are first.
而不是...
phpBB2/index.php?threads/very-interesting-thread-you-cant-stop-looking-at/page-58
做...
phpBB2/index.php?threads/very-interesting-thread-you-cant-stop-looking-at/latest
instead of...
phpBB2/index.php?threads/very-interesting-thread-you-cant-stop-looking-at/page-58
do...
phpBB2/index.php?threads/very-interesting-thread-you-cant-stop-looking-at/latest