Discuz在线用户统计处划过用户名显示名片的实现方法
Discuz首页有一个在线会员统计功能,能够显示当前在线会员,但是我们可以通过开发让鼠标划过用户名时显示当前用户名片,这样可以增加网站互动性,那么具体应该怎么操作呢?下面就给大家分享一下:打开 /template/default/forum/discuzhtm 文件找到
在其后面添加如下代码:修改完成后保存并在后台更新缓存即可
小编极力推荐:
网页制作编辑器大全
discuz在后台发表主题很麻烦,要设计几个相关的表:
1、主题表 pre_forum_thread:这个表一个主要数据就是 tid 主题ID
2、post 分表协调表 pre_forum_post_tableid:这里需要获取一个自增的 pid
3、帖子表 pre_forum_post :记录主题pid、fid、tid、title、content等主要信息
4、版块表 pre_forum_forum:这里主要更新版块的主题、帖子数量
5、帖子主题审核数据表 pre_forum_thread_moderate:这个可以根据自己状况决定,并不是必须的
6、用户统计表 pre_common_member_count:主要是更新用户的主题数量
在后台发帖主要涉及到了上面6个数据库表,其中第5个不是必须的。
处理完数据口以后,就可以在后台发帖了,大致流程如下:
第一步:向 主题表 pre_forum_thread 中插入版块ID、用户ID、用户名、帖子标题、发帖时间等信息。
第二步:获取第一步插入表 pre_forum_thread 的数据ID,作为主题ID,即 tid
第三步:向 post 分表协调表 pre_forum_post_tableid 插入一条数据,这张表中只有一个自增字段 pid
第四步:获取 第三步 插入表 pre_forum_post_tableid 的数据ID,作为 pid
第五部:向帖子表 pre_forum_post 中插入帖子相关信息,这里需要注意的是: pid为第四部的pid值,tid为第二步的tid值
第六部:更新版块 pre_forum_forum 相关主题、帖子数量信息
第七步:更新用户 pre_common_member_count 帖子数量信息
discuz发帖过程主要就是以上7个步骤,通过这几个步骤就可以完成对实现discuz的发帖流程,其中设计到一些积分等其他信息的可以自己加上。
php中定时计划任务的实现原理:
当 PHP 脚本正常地运行 NORMAL 状态时,连接为有效。当远程客户端中断连接时,ABORTED 状态的标记将会被打开。远程客户端连接的中断通常是由用户点击 STOP 按钮导致的。当连接时间超过 PHP 的时限时,TIMEOUT 状态的标记将被打开。
示例代码:
<php
ignore_user_abort(true);set_time_limit(0);
date_default_timezone_set('PRC'); // 切换到中国的时间
$run_time = strtotime('+1 day'); // 定时任务第一次执行的时间是明天的这个时候
$interval = 360012; // 每12个小时执行一次
if(!file_exists(dirname(__FILE__)'/cron-run')) exit(); // 在目录下存放一个cron-run文件,如果这个文件不存在,说明已经在执行过程中了,该任务就不能再激活,执行第二次,否则这个文件被多次访问的话,服务器就要崩溃掉了
do {
if(!file_exists(dirname(__FILE__)'/cron-switch')) break; // 如果不存在cron-switch这个文件,就停止执行,这是一个开关的作用
$gmt_time = microtime(true); // 当前的运行时间,精确到00001秒
$loop = isset($loop) && $loop $loop : $run_time - $gmt_time; // 这里处理是为了确定还要等多久才开始第一次执行任务,$loop就是要等多久才执行的时间间隔
$loop = $loop > 0 $loop : 0;
if(!$loop) break; // 如果循环的间隔为零,则停止
sleep($loop);
//
// 执行某些代码
//
@unlink(dirname(__FILE__)'/cron-run'); // 这里就是通过删除cron-run来告诉程序,这个定时任务已经在执行过程中,不能再执行一个新的同样的任务
$loop = $interval;
} while(true);
package orgshaw;
import orgapachecommonshttpclientCookie;
import orgapachecommonshttpclientHttpClient;
import orgapachecommonshttpclientNameValuePair;
import orgapachecommonshttpclientmethodsGetMethod;
import orgapachecommonshttpclientmethodsPostMethod;
public class BaiyouBBS {
static final String LOGON_SITE = "wwwqiluyiyoucom";
static final int LOGON_PORT = 80;
public Cookie[] login(String name, String pas) {
try {
HttpClient client = new HttpClient();
clientgetHostConfiguration()setHost(LOGON_SITE, LOGON_PORT);
PostMethod post = new PostMethod("/loggingphpaction=login");
clientexecuteMethod(post);
String responseString = new String(postgetResponseBody(), "gbk");
postreleaseConnection();
String formhash = getFormHash(responseString);
Systemoutprintln(formhash);
post = new PostMethod("/loggingphpaction=login&");
NameValuePair[] params = new NameValuePair[11];
params[0] = new NameValuePair("loginfield", "username");
params[1] = new NameValuePair("username", name);
params[2] = new NameValuePair("password", pas);
params[3] = new NameValuePair("referer", "indexphp");
params[4] = new NameValuePair("questionid", "0");
params[5] = new NameValuePair("answer", "");
params[6] = new NameValuePair("cookietime", "2592000");
params[7] = new NameValuePair("formhash", formhash);
params[8] = new NameValuePair("loginmode", "");
params[9] = new NameValuePair("loginsubmit", "true");
params[10] = new NameValuePair("styleid", "");
postsetRequestBody(params);
clientexecuteMethod(post);
// responseString = new String(postgetResponseBody(), "gbk");
postreleaseConnection();
GetMethod get = new GetMethod("/indexphp");
clientexecuteMethod(get);
responseString = new String(getgetResponseBody(), "gbk");
getreleaseConnection();
Systemoutprintln(responseString);
} catch (Exception e) {
eprintStackTrace();
}
return null;
}
public String getFormHash(String htmlContent) {
try {
int start = htmlContentindexOf("name=\"formhash\"");
start = htmlContentindexOf("value=\"", start) + 7;
int end = htmlContentindexOf("\"", start);
String formhash = htmlContentsubstring(start, end);
return formhash;
} catch (RuntimeException e) {
throw e;
}
}
public static void main(String[] args) {
new BaiyouBBS()login("zzzxxxzzz", "zzzxxxzzz");
}
}
0条评论