程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程問題解答 >> 如何判斷用戶是否非正常離開聊天室?

如何判斷用戶是否非正常離開聊天室?

編輯:編程問題解答

如何判斷用戶是否非正常離開聊天室?

    total = application("AllPeople")

' 聊天總人數.
    aryHuman = split(total,";")
    for i = lbound(aryHuman) to ubound(aryHuman) - 1
    if application("user" & i) = "online" then
    if int(timer) - int(application("TimeBegin" & i)) > 120 then
    application("user" & i) = ""
    temp = aryHuman(i)
    aryName = split(temp,",")
    hrefname =  aryName(0)
    for j = lbound(aryHuman) to ubound(aryHuman) - 1
    if application("user" & j) = "online" then
  application("content" & j) = "<FONT color=#000000>〖精彩春風之聊天室的系統公告〗"&hrefname&"</FONT>" &"<font  color=#F08000 >"& "掉線了..." & "</font><font color = #000000 class=p9>" & "  <" & time() & "></font><br>" & application
("content" & j)
    end if
    next
    end if
    end if
    next

[1]

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved