Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有什么方法可以检查登录的用户是否阅读了某个线程?我目前正在使用一个单独的网页(在论坛软件之外),我需要在其中检查用户是否已登录以及该用户是否已阅读某个主题。我已经通过要求 global.php 来检查用户是否登录,但我不确定如何检查用户是否阅读了该线程。
我在这个网页上使用 PHP,最好坚持使用它(这应该不难,因为 vBulletin 是用 PHP 构建的)
编辑:使用 vBulletin 4.2.0
谢谢!
我设法通过使用andcontentread的双 WHERE 子句读取表来做到这一点。useridcontentid
contentread
userid
contentid
$userid = $vbulletin->userinfo[userid]; $chkthread = mysql_query("SELECT * FROM contentread WHERE userid = '$userid' AND contentid = 1"); $chkthr = mysql_num_rows($chkthread); if($chkthr < 1){ }